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

Cache provider for AdonisJS framework

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

Simple example: ``` const user = await Cache.remember('cachekey', 1000, async () => { return await User.find(1) }) return response.json({ user: user.toJSON() }) ``` **Problem** As soon as I call `user.toJSON()`,...