@keyvjs/redis

2.1.1 • Public • Published

@keyvjs/redis keyv

Redis storage adapter for Keyv

Build Status Coverage Status npm

Redis storage adapter for Keyv.

TTL functionality is handled directly by Redis so no timestamps are stored and expired keys are cleaned up internally.

Install

npm install --save @keyvjs/keyv @keyvjs/redis

Usage

const Keyv = require('@keyvjs/keyv');

const keyv = new Keyv('redis://user:pass@localhost:6379');
keyv.on('error', handleConnectionError);

Any valid Redis options will be passed directly through.

e.g:

const keyv = new Keyv('redis://user:pass@localhost:6379', { disable_resubscribing: true });

Or you can manually create a storage adapter instance and pass it to Keyv:

const KeyvRedis = require('@keyvjs/redis');
const Keyv = require('@keyvjs/keyv');

const keyvRedis = new KeyvRedis('redis://user:pass@localhost:6379');
const keyv = new Keyv({ store: keyvRedis });

Or reuse a previous Redis instance:

const KeyvRedis = require('@keyvjs/redis');
const Redis = require('ioredis');
const Keyv = require('@keyvjs/keyv');

const redis = new Redis('redis://user:pass@localhost:6379');
const keyvRedis = new KeyvRedis(redis);
const keyv = new Keyv({ store: keyvRedis });

License

MIT © Luke Childs

Package Sidebar

Install

npm i @keyvjs/redis

Weekly Downloads

0

Version

2.1.1

License

MIT

Unpacked Size

5.52 kB

Total Files

4

Last publish

Collaborators

  • lukechilds