deepstream.io-cache-redis

1.2.2 • 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();

Readme

Keywords

none

Package Sidebar

Install

npm i deepstream.io-cache-redis

Weekly Downloads

16

Version

1.2.2

License

Apache-2.0

Unpacked Size

16.2 kB

Total Files

10

Last publish

Collaborators

  • deepstreamio
  • hoxton-one-ltd