functional-cache-redis

0.0.1 • Public • Published

Functional Cache Redis

Cache provider for functional-cache library.

Usage

const cacheFactory = require('functional-cache');
const RedisProvider = require('functional-cache-redis');

const cache = cacheFactory.createNew(new RedisProvider());
const getBooks = cache.cacheCalls(getBooksFromApi);

Customization

Redis cache provider uses Redis npm library. When creating new CacheProvider instance without params, it initiates new client connecting to localhost:6379. This can by configured simply by providing different client instance to RedisProvider constructor:

const redisClientWithDifferentOptions = getRedisClient();
const cache = cacheFactory.createNew(new RedisProvider(redisClientWithDifferentOptions));
const getBooks = cache.cacheCalls(getBooksFromApi);

Package Sidebar

Install

npm i functional-cache-redis

Weekly Downloads

3

Version

0.0.1

License

MIT

Unpacked Size

7.44 kB

Total Files

7

Last publish

Collaborators

  • katilius