mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 04:26:33 +01:00
13 lines
382 B
TypeScript
13 lines
382 B
TypeScript
import Redis from 'ioredis';
|
|
import { Config } from '@/config.js';
|
|
|
|
export function createRedisConnection(config: Config): Redis.Redis {
|
|
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,
|
|
});
|
|
}
|