开发过程中使用缓存的情况还是比较多的,记录一下Redis的参数说明以备以后查看: #Redis Config daemonize yes pidfile /var/run/redis.pid port 6379 # bind 127.0.0.1 timeout 0 #超时断开 # Set server verbosity to 'debug' # it can be one of: # debug (a lot of information, useful for development/te…
本文主要总结一下redis常用的配置参数的用法: 以下参数决定redis运行方式,默认前台运行,修改为yes可以让redis以后台守护进程方式运行 daemonize no 以下参数指定redis的pid文件,当redis以守护进程方式运行时,默认会把pid写入/var/run/redis.pid文件,可以修改 pidfile /var/run/redis.pid 以下参数指定Redis监听端口,默认为6379 port Tips:作者在自己的一篇博文中解释了为什么选用6379作为默认端口,因为…