@deepstream/cache-redis
v2.0.9
Published
Redis cache connector for deepstream.io
Downloads
109
Readme
deepstream.io-cache-redis
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: {}