2023-01-12 21:40:33 -07:00
|
|
|
import Redis from "ioredis";
|
|
|
|
import config from "@/config/index.js";
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2021-03-22 23:54:09 -06:00
|
|
|
export function createConnection() {
|
2022-06-24 04:22:19 -06:00
|
|
|
return new Redis({
|
|
|
|
port: config.redis.port,
|
|
|
|
host: config.redis.host,
|
2023-06-26 16:02:54 -06:00
|
|
|
family: config.redis.family ?? 0,
|
2022-06-24 04:22:19 -06:00
|
|
|
password: config.redis.pass,
|
2023-06-26 16:02:54 -06:00
|
|
|
username: config.redis.user ?? "default",
|
2022-06-24 04:22:19 -06:00
|
|
|
keyPrefix: `${config.redis.prefix}:`,
|
|
|
|
db: config.redis.db || 0,
|
2023-06-28 00:44:16 -06:00
|
|
|
tls: config.redis.tls,
|
2022-06-24 04:22:19 -06:00
|
|
|
});
|
2021-03-22 23:54:09 -06:00
|
|
|
}
|
2021-03-22 20:53:25 -06:00
|
|
|
|
2022-08-04 02:20:48 -06:00
|
|
|
export const subscriber = createConnection();
|
|
|
|
subscriber.subscribe(config.host);
|
2021-03-22 20:53:25 -06:00
|
|
|
|
2021-03-22 23:54:09 -06:00
|
|
|
export const redisClient = createConnection();
|