fenghuo/apps/backend/src/redis.ts

10 lines
219 B
TypeScript
Raw Normal View History

2025-05-26 19:56:34 +08:00
// apps/backend/src/redis.ts
import Redis from 'ioredis';
const redis = new Redis({
host: 'localhost', // 根据实际情况配置
port: 6379,
2025-05-26 22:25:28 +08:00
password: process.env.REDIS_PASSWORD
2025-05-26 19:56:34 +08:00
});
export default redis;