bind 0.0.0.0 ::1
bind 0.0.0.0
protected-mode yes
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize yes
supervised no
pidfile /var/run/redis_6379.pid
loglevel notice
logfile ""
databases 16
# always-show-logo yes
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir ./
# replica-serve-stale-data yes
# replica-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
# replica-priority 100
# 登陆密码
requirepass wangzherongyao_luna
# lazyfree-lazy-eviction no
# lazyfree-lazy-expire no
# lazyfree-lazy-server-del no
# replica-lazy-flush no
appendonly no
appendfilename "appendonly.aof"
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
# aof-use-rdb-preamble yes
lua-time-limit 5000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
# stream-node-max-bytes 4096
# stream-node-max-entries 100
activerehashing yes
client-output-buffer-limit normal 0 0 0
# client-output-buffer-limit replica 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
# dynamic-hz yes
aof-rewrite-incremental-fsync yes
# rdb-save-incremental-fsync yes
Redis 配置文件
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 注意事项 不要直接修改 redis.conf,修改之前先备份一份默认的初始化配置文件,以备不时之需! 配置说明
- 前言 细想了一下,这篇标题上这些东西,每一块拿出来都能长篇大论。那我就,长话挑着说,中间件用链接。 文章目录 re...
- By default Redis does not run as a daemon. Use 'yes' if y...
- 上一篇博客我们介绍了如何安装Redis,在Redis的解压目录下有个很重要的配置文件** redis.conf**...
- Redis官方文档对VM的使用提出了一些建议:当key很小而value很大时,使用VM的效果会比较好.因为这样节约...