2022-06-24 19:22:19 +09:00
|
|
|
import Redis from 'ioredis';
|
2022-09-22 05:11:26 +09:00
|
|
|
import { Config } from '@/config.js';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2022-09-22 05:11:26 +09:00
|
|
|
export function createRedisConnection(config: Config): Redis.Redis {
|
2022-06-24 19:22:19 +09: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}:`,
|
2022-09-18 03:27:08 +09:00
|
|
|
db: config.redis.db ?? 0,
|
2022-06-24 19:22:19 +09:00
|
|
|
});
|
2021-03-23 14:54:09 +09:00
|
|
|
}
|