- 添加 Dockerfile 与多套 docker-compose 配置(开发/生产环境) - 集成 Laravel Octane (Swoole) 提升性能 - 新增健康检查、监控脚本及部署文档 - 新增 Docker 镜像离线导入包(MySQL/Redis/Meilisearch) - 优化文档转换、预览服务及队列任务 - 添加 CreateAdminUser 命令与路由健康检查接口 - 新增 Swoole 队列兼容性测试套件 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
53 lines
827 B
Plaintext
53 lines
827 B
Plaintext
# Redis生产环境配置
|
|
|
|
# 网络配置
|
|
bind 0.0.0.0
|
|
port 6379
|
|
timeout 300
|
|
tcp-keepalive 60
|
|
|
|
# 内存配置
|
|
maxmemory 512mb
|
|
maxmemory-policy allkeys-lru
|
|
|
|
# 持久化配置
|
|
save 900 1
|
|
save 300 10
|
|
save 60 10000
|
|
rdbcompression yes
|
|
rdbchecksum yes
|
|
dbfilename dump.rdb
|
|
dir /data
|
|
|
|
# AOF配置
|
|
appendonly yes
|
|
appendfilename "appendonly.aof"
|
|
appendfsync everysec
|
|
no-appendfsync-on-rewrite no
|
|
auto-aof-rewrite-percentage 100
|
|
auto-aof-rewrite-min-size 64mb
|
|
|
|
# 日志配置
|
|
loglevel notice
|
|
logfile ""
|
|
|
|
# 安全配置
|
|
protected-mode no
|
|
# requirepass your_redis_password_here
|
|
|
|
# 性能配置
|
|
tcp-backlog 511
|
|
databases 16
|
|
stop-writes-on-bgsave-error yes
|
|
rdbcompression yes
|
|
rdbchecksum yes
|
|
|
|
# 客户端配置
|
|
maxclients 10000
|
|
|
|
# 慢日志配置
|
|
slowlog-log-slower-than 10000
|
|
slowlog-max-len 128
|
|
|
|
# 延迟监控
|
|
latency-monitor-threshold 100 |