node-cache-manager-sqlite icon indicating copy to clipboard operation
node-cache-manager-sqlite copied to clipboard

A modern SQLite store for node-cache-manager

Results 3 node-cache-manager-sqlite issues
Sort by recently updated
recently updated
newest added

`cache-manager` v5 changed ttl from milliseconds to seconds. So, if we works with cache-manager v5, we already use ms by default. But here under the hood `mset` multiply provided ttl...

This error is happend ```js const cacheCollectionSQLiteStore = cacheManager.caching({ store: sqliteStore, options: { serializer: 'json', ttl: ONE_MINUTE * 60 } }); async function getCollectionsInfoFromCache() { const cacheStore = await cacheCollectionStore;...

Hi, huge fan of your library. I went ahead and [forked it](https://github.com/eligundry/cache-manager-better-sqlite3) to meet the following needs: - Make it work with cache-manager@5, which simplified the storage contract to be...