2022-06-24 12:22:19 +02:00
|
|
|
import Redis from 'ioredis';
|
2022-02-27 03:07:39 +01: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() {
|
2022-06-24 12:22:19 +02:00
|
|
|
return new Redis({
|
|
|
|
port: config.redis.port,
|
|
|
|
host: config.redis.host,
|
|
|
|
family: config.redis.family == null ? 0 : config.redis.family,
|
|
|
|
password: config.redis.pass,
|
|
|
|
keyPrefix: `${config.redis.prefix}:`,
|
|
|
|
db: config.redis.db || 0,
|
|
|
|
});
|
2021-03-23 06:54:09 +01:00
|
|
|
}
|
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();
|