2016-12-28 22:49:51 +00:00
|
|
|
import * as redis from 'redis';
|
2018-04-02 04:15:53 +00:00
|
|
|
import config from '../config';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2021-03-23 02:53:25 +00:00
|
|
|
const client = redis.createClient(
|
2019-02-07 12:02:33 +00:00
|
|
|
config.redis.port,
|
|
|
|
config.redis.host,
|
|
|
|
{
|
2019-06-09 14:07:32 +00:00
|
|
|
password: config.redis.pass,
|
2019-03-09 14:44:54 +00:00
|
|
|
prefix: config.redis.prefix,
|
|
|
|
db: config.redis.db || 0
|
2019-02-07 12:02:33 +00:00
|
|
|
}
|
2019-04-13 10:19:32 +00:00
|
|
|
);
|
2021-03-23 02:53:25 +00:00
|
|
|
|
|
|
|
client.subscribe(config.host);
|
|
|
|
|
|
|
|
export default client;
|