adonis-cache icon indicating copy to clipboard operation
adonis-cache copied to clipboard

AdonisJS Cache makes it seamless to implement any Caching strategy in AdonisJS 5 applications.

Results 7 adonis-cache issues
Sort by recently updated
recently updated
newest added

"type": "Error", "message": "Error: Specify a name and data to cache", "stack": Error: Error: Specify a name and data to cache at ForumsController.show (/Users/solomon/Documents/workspace/JSProjects/adonisjs-forum-api/app/Controllers/Http/ForumsController.ts:43:27) at processTicksAndRejections (internal/process/task_queues.js:93:5) at Object.PreCompiler.runRouteHandler [as...

good first issue

**test1 route** ``` public async all() { return await Cache.remember('saved', 60, async function () { return await Saved.all() }) } ``` **test2 route** ``` public async all() { return await...

If I use "file" cache driver the cache gets named [object Promise].cache and by awaiting the key hashing I get different key each time, so using _get_ or _has_ etc....

How to use Tag or key search by Prefix?

I've just installed your package. The contract file was not here. I made a copy from your template. I believe this is because you do not specify it in your...

"type": "Error", "message": "Error: Specify a name and data to cache", "stack": Error: Error: Specify a name and data to cache at ForumsController.show (/Users/solomon/Documents/workspace/JSProjects/adonisjs-forum-api/app/Controllers/Http/ForumsController.ts:43:27) at processTicksAndRejections (internal/process/task_queues.js:93:5) at Object.PreCompiler.runRouteHandler [as...