SQLite store for cache manager
A new SQLite cache store for cache-manager.
Featuring:
- using better-sqlite3
- 100% test coverage and production ready
- Optimized
mset
/mget
support - ESM only
Installation
npm i @resolid/cache-manager-sqlite
Requirements
Usage
import {sqliteStore} from '@resolid/cache-manager-sqlite';
import {createCache} from 'cache-manager';
import {join} from 'node:path';
const memStoreCache = cacheManager.caching(sqliteStore({cacheTableName: 'caches'}));
const sqliteStoreCache = cacheManager.caching(sqliteStore({sqliteFile: join(process.cwd(), 'cache.sqlite3'), cacheTableName: 'caches'}))
License
MIT.
Thanks
Thanks to JetBrains for the OSS development license.