2016-12-28 22:49:51 +00:00
|
|
|
import * as redis from 'redis';
|
2021-08-19 12:55:45 +00:00
|
|
|
import config from '@/config/index';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2021-03-23 05:54:09 +00:00
|
|
|
export function createConnection() {
|
|
|
|
return redis.createClient(
|
|
|
|
config.redis.port,
|
|
|
|
config.redis.host,
|
|
|
|
{
|
|
|
|
password: config.redis.pass,
|
|
|
|
prefix: config.redis.prefix,
|
2021-12-09 14:58:30 +00:00
|
|
|
db: config.redis.db || 0,
|
2021-03-23 05:54:09 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2021-03-23 02:53:25 +00:00
|
|
|
|
2021-03-23 05:54:09 +00:00
|
|
|
export const subsdcriber = createConnection();
|
|
|
|
subsdcriber.subscribe(config.host);
|
2021-03-23 02:53:25 +00:00
|
|
|
|
2021-03-23 05:54:09 +00:00
|
|
|
export const redisClient = createConnection();
|