2016-12-28 23:49:51 +01:00
|
|
|
import * as redis from 'redis';
|
2021-08-19 11:33:41 +02:00
|
|
|
import config from '@/config/index.js';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2021-03-23 06:54:09 +01: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 03:53:25 +01:00
|
|
|
|
2021-03-23 06:54:09 +01:00
|
|
|
export const subsdcriber = createConnection();
|
|
|
|
subsdcriber.subscribe(config.host);
|
2021-03-23 03:53:25 +01:00
|
|
|
|
2021-03-23 06:54:09 +01:00
|
|
|
export const redisClient = createConnection();
|