@livingdata/keyv-sqlite
v2.1.0
Published
SQLite storage adapter for Keyv
Downloads
137
Maintainers
Readme
@keyv/sqlite
SQLite storage adapter for Keyv
SQLite storage adapter for Keyv.
Install
npm install --save keyv @keyv/sqlite
Usage
const Keyv = require('keyv');
const keyv = new Keyv('sqlite://path/to/database.sqlite');
keyv.on('error', handleConnectionError);
You can specify the table
and busyTimeout
option.
e.g:
const keyv = new Keyv('sqlite://path/to/database.sqlite', {
table: 'cache',
busyTimeout: 10000
});
License
MIT © Luke Childs