@soluble/cache-redis

Node redis cache interop adapter

Usage no npm install needed!

<script type="module">
  import solubleCacheRedis from 'https://cdn.skypack.dev/@soluble/cache-redis';
</script>

README

Codecov Downloads Codecov Codefactor CodeClimate TechDebt Typings Licence

About | Documentation

Cache adapter for node redis client.

Install

$ yarn add @soluble/cache-redis redis
$ yarn add @types/redis --dev

Usage

import { RedisCacheAdapter } from '@soluble/cache-redis';

const cache = new RedisCacheAdapter({
  connection: 'redis://:pass@localhost:6379/8',
});

const { data, error } = await cache.getOrSet('key', asyncPromise, {
  ttl: 30,
});

if (await cache.has('key')) {
  await cache.delete('key');
}

Constructor

Connection

RedisAdapter connection param can be a DSN, a RedisConnection, the native ClientOpts or an existing RedisClient connection.

You can use the getRedisOptionsFromDsn function to initiate a connection with native parameters.

import { RedisCacheAdapter, getRedisOptionsFromDsn } from '@soluble/cache-redis';

const dsn = 'redis://localhost:6379/db2';

const cache = new RedisCacheAdapter({
  connection: getRedisOptionsFromDsn(dsn, {
    // here all node-redis client options
    enable_offline_queue: false,
  }),
});