2023-07-27 14:31:52 +09:00
|
|
|
/*
|
2023-08-01 17:16:39 +09:00
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
|
2023-07-27 14:31:52 +09:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-04-14 14:14:00 +09:00
|
|
|
import Redis from 'ioredis';
|
2023-02-26 20:07:45 +09:00
|
|
|
import { loadConfig } from './built/config.js';
|
2023-02-24 14:09:17 +09:00
|
|
|
|
|
|
|
const config = loadConfig();
|
2023-07-20 19:50:31 +09:00
|
|
|
const redis = new Redis(config.redis);
|
2023-02-24 14:09:17 +09:00
|
|
|
|
|
|
|
redis.on('connect', () => redis.disconnect());
|
|
|
|
redis.on('error', (e) => {
|
2023-02-26 20:07:52 +09:00
|
|
|
throw e;
|
2023-02-24 14:09:17 +09:00
|
|
|
});
|