redis配置文件详解

redis配置文件详解

配置文件路径:D:\install\Redis-x64-5.0.10\redis.windows.conf

内存单位

注意点:

  1. k和kb不同
  2. 大小写不敏感
# 1k => 1000 bytes
# 1kb => 1024 bytes
# 1m => 1000000 bytes
# 1mb => 1024*1024 bytes
# 1g => 1000000000 bytes
# 1gb => 1024*1024*1024 bytes

include

可以包含其他配置文件,使其他配置文件也生效

# include .\path\to\local.conf
# include c:\path\to\other.conf

bindport

bind 绑定ip地址,可以绑定一个或者多个

port 设置端口号:redis默认端口号6379

bind 127.0.0.1 # 默认
# bind 192.168.1.100 10.0.0.1
# bind 127.0.0.1 ::1
port 6379

tcp-backlog

tcp连接积压数量设置:详见https://zhuanlan.zhihu.com/p/136234069

tcp-backlog 511

unixsocket

指定unix socket监听的路径

# unixsocket /tmp/redis.sock
# unixsocketperm 700

先写到这。。。后面觉得有价值再继续

posted @ 2022-03-22 14:49  Oh,mydream!  阅读(123)  评论(0编辑  收藏  举报