@deepstream/cache-redis

2.0.9 • Public • Published

deepstream.io-cache-redis npm version

deepstream cache connector for redis

This connector uses the npm redis package. Please have a look there for detailed options.

Basic Setup

plugins:
  cache:
    name: redis
    options:
      host: ${REDIS_HOST}
      port: ${REDIS_PORT}
      db: ${REDIS_DB_INDEX} // optional
      ttl: 86400 // optional time to live in seconds
var Deepstream = require( 'deepstream.io' ),
    RedisCacheConnector = require( 'deepstream.io-cache-redis' ),
    server = new Deepstream();

server.set( 'cache', new RedisCacheConnector( {
  port: 6379,
  host: 'localhost'
}));

server.start();

Basic Setup with TLS support

If you need to establish the redis connection via tls, set the tls option:

plugins:
  cache:
    name: redis
    options:
      host: ${REDIS_HOST}
      port: ${REDIS_PORT}
      db: ${REDIS_DB_INDEX} // optional
      ttl: 86400 // optional time to live in seconds
      tls: {}

Readme

Keywords

none

Package Sidebar

Install

npm i @deepstream/cache-redis

Weekly Downloads

1

Version

2.0.9

License

Apache-2.0

Unpacked Size

53.7 kB

Total Files

22

Last publish

Collaborators

  • jaime-ez
  • yasserf
  • valentinvichnal