首页 > 代码库 > redis 配置文件翻译

redis 配置文件翻译

2014年6月24日 17:29:11

如果有其它配置文件,可以使用 include 指令

默认的redis不会以守护进程运行,需要这样的话可以 daemonize  yes

进程信息放在/var/run/redis.pid中,可以用指令 pidfile 指定

端口默认为6397 设为0的话 redis不会监听tcp socket

高并发下需要将 tcp-backlog 值设置的大一些,但也要修改Linux系统的/proc/sys/net/core/somaxconn 保证指令起作用

默认下,redis监听所有ip,如果要指定ip,用指令 bind ip1 ip2 ....

默认下,redis不会去监听文件socket

timeout 0 表示不关闭链接, timeout N 表示N秒

---先这么多

 http://www.tuicool.com/articles/ErY3Uf

http://www.mudbest.com/centos%E4%B8%8B%E7%9A%84redis2-8-9%E7%BC%96%E8%AF%91%E5%AE%89%E8%A3%85%E4%BB%A5%E5%8F%8A%E7%9B%B8%E5%85%B3%E9%85%8D%E7%BD%AE/