Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 260 Bytes

instructions.md

File metadata and controls

19 lines (14 loc) · 260 Bytes

Register provider

const providers = ['@adonisjs/cache/providers/CacheProvider']

Inside your Controllers

const Cache = use('Cache')
const Cache = use('Cache')

Cache.get('posts').then((post) => {
  res.json(post)
})