2016-12-28 14:49:51 -08:00
|
|
|
import * as redis from 'redis';
|
2021-08-19 05:55:45 -07:00
|
|
|
import config from '@/config/index';
|
2016-12-28 14:49:51 -08:00
|
|
|
|
2021-03-22 22:54:09 -07: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-22 19:53:25 -07:00
|
|
|
|
2021-03-22 22:54:09 -07:00
|
|
|
export const subsdcriber = createConnection();
|
|
|
|
subsdcriber.subscribe(config.host);
|
2021-03-22 19:53:25 -07:00
|
|
|
|
2021-03-22 22:54:09 -07:00
|
|
|
export const redisClient = createConnection();
|