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