@keyv/mongo
v3.0.1
Published
MongoDB storage adapter for Keyv
Downloads
27,706
Maintainers
Readme
@keyv/mongo
MongoDB storage adapter for Keyv
MongoDB storage adapter for Keyv.
Uses TTL indexes to automatically remove expired documents. However MongoDB doesn't guarantee data will be deleted immediately upon expiration, so expiry dates are revalidated in Keyv.
Install
npm install --save keyv @keyv/mongo
Usage
import Keyv from 'keyv';
import KeyvMongo from '@keyv/mongo';
const keyv = new Keyv(new KeyvMongo('mongodb://user:pass@localhost:27017/dbname'));
keyv.on('error', handleConnectionError);
You can specify the collection name, by default 'keyv'
is used.
e.g:
const keyv = new Keyv('mongodb://user:pass@localhost:27017/dbname', { collection: 'cache' });