jingrow-framework/redis.conf
2025-10-24 23:10:22 +08:00

26 lines
364 B
Plaintext

# Jingrow Local Redis 配置文件
# 禁用持久化,因为只存储临时任务队列数据
# 基本配置
port 6379
daemonize yes
bind 127.0.0.1
# 禁用RDB持久化
save ""
# 禁用AOF持久化
appendonly no
# 内存配置
maxmemory 256mb
maxmemory-policy allkeys-lru
# 日志配置
loglevel notice
logfile ""
# 其他配置
tcp-keepalive 300
timeout 0