2016-12-28 22:49:51 +00:00
|
|
|
import * as redis from 'redis';
|
2021-03-23 08:43:07 +00:00
|
|
|
import config from '@/config';
|
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,
|
|
|
|
db: config.redis.db || 0
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
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();
|