@melchyore/adonis-cache
Version:
Cache package for AdonisJS V5
18 lines (17 loc) • 611 B
Plain Text
/*
|--------------------------------------------------------------------------
| Database store
|--------------------------------------------------------------------------
|
| Use this store to store cache in the database. By default,
| it will use the default database connection from the
| environment variables.
| You can specify another connection by adding the `connection`
| property to the `database` object as follows:
| connection: 'my-other-connection-name',
|
*/
database: {
driver: 'database',
table: '{{ cacheTableName }}'
},