首页 > 代码库 > redis.conf for Chinese

redis.conf for Chinese

#引用其他配置文件# include /path/to/local.conf# include /path/to/other.conf#是否daemon运行no,yesdaemonize no#pid文件的位置pidfile /tmp/redis.pid#开放的端口号port 6379#listen队列的长度tcp-backlog 511#绑定ip地址,多个ip用空格分隔bind 127.0.0.1#我没有用到# unixsocket /tmp/redis.sock# unixsocketperm 755#客户端空闲多少s后踢掉,0禁止timeout 0#检测挂掉的连接,单位s,0禁止tcp-keepalive 0#日志的等级,debug,verbose,notice,warningloglevel notice#log文件的路径,为空的话直接显示在终端logfile ""#是否使用系统logger,一直没有用过。# syslog-enabled no/# syslog-ident redis# syslog-facility local0#redis中有多少个数据库,默认即可databases 16 #将redis内存数据序列化到磁盘的时间和频率#900s有1个key改变就会序列化,其他的读者可以自己看下save 900 1save 300 10save 60 10000#序列化的时候是否停止写操作stop-writes-on-bgsave-error yes#序列化的数据是否压缩rdbcompression yes#序列化的数据是否校验其完整性rdbchecksum yes#序列化的文件名,只是文件不能带目录dbfilename redis.rdb#序列化文件的目录dir /tmp #以下是主从备份,我还没有使用到# slaveof <masterip> <masterport># masterauth <master-password>slave-serve-stale-data yesslave-read-only yes# repl-ping-slave-period 10# repl-timeout 60repl-disable-tcp-nodelay no# repl-backlog-size 1mb# repl-backlog-ttl 3600slave-priority 100# min-slaves-to-write 3# min-slaves-max-lag 10 #客户端连接的密码requirepass hello # rename-command CONFIG "" #限制客户端的数量# maxclients 10000#设置最大可用内存# maxmemory <bytes>#内存替换算法# maxmemory-policy volatile-lru# maxmemory-samples 3

 

redis.conf for Chinese