From 1fd385abd0bc0513e9b45d6cff3be3f0e36cdb12 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Wed, 2 Aug 2017 21:52:15 +0100 Subject: [PATCH] Also mention table option --- packages/keyv-sqlite/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/keyv-sqlite/README.md b/packages/keyv-sqlite/README.md index 79faf7f..242714f 100644 --- a/packages/keyv-sqlite/README.md +++ b/packages/keyv-sqlite/README.md @@ -23,12 +23,15 @@ const keyv = new Keyv('sqlite://path/to/database.sqlite'); keyv.on('error', handleConnectionError); ``` -You can specify the [`busyTimeout`](https://sqlite.org/c3ref/busy_timeout.html) option in milliseconds. +You can specify the `table` and [`busyTimeout`](https://sqlite.org/c3ref/busy_timeout.html) option. e.g: ```js -const keyv = new Keyv('sqlite://path/to/database.sqlite', { busyTimeout: 10000 }); +const keyv = new Keyv('sqlite://path/to/database.sqlite', { + table: 'cache', + busyTimeout: 10000 +}); ``` ## License