redis.conf是redis的配置文件,其参数解释如下,了解即可,不用死记硬背。
# daemonize no Linux Shell终端运行redis,改为yes即后台运行Redis服务;
daemonize yes
# 当运行多个 redis 服务时,需要指定不同的pid文件和端口
pidfile /var/run/redis.pid
# 指定redis运行的端口,默认是 6379
port 6379
#在高并发的环境中,为避免慢客户端的连接问题,需要设置一个高速后台日志
tcp-backlog 8192
# 指定redis只接收来自于该 IP 地址的请求,如果不进行设置,那么将处理所有请求
# bind 192.168.1.100 10.0.0.1
# bind 0.0.0.0
<