Redis详细配置介绍

  1. # redis 配置文件示例
  2.  
  3. # 当你需要为某个配置项指定内存大小的时候,必须要带上单位,
  4. # 通常的格式就是 1k 5gb 4m 等酱紫:
  5. #
  6. # 1k => 1000 bytes
  7. # 1kb => 1024 bytes
  8. # 1m => 1000000 bytes
  9. # 1mb => 1024*1024 bytes
  10. # 1g => 1000000000 bytes
  11. # 1gb => 1024*1024*1024 bytes
  12. #
  13. # 单位是不区分大小写的,你写 1K 5GB 4M 也行
  14.  
  15. ################################## INCLUDES ###################################
  16.  
  17. # 假如说你有一个可用于所有的 redis server 的标准配置模板,
  18. # 但针对某些 server 又需要一些个性化的设置,
  19. # 你可以使用 include 来包含一些其他的配置文件,这对你来说是非常有用的。
  20. #
  21. # 但是要注意哦,include 是不能被 config rewrite 命令改写的
  22. # 由于 redis 总是以最后的加工线作为一个配置指令值,所以你最好是把 include 放在这个文件的最前面,
  23. # 以避免在运行时覆盖配置的改变,相反,你就把它放在后面(外国人真啰嗦)。
  24. #
  25. # include /path/to/local.conf
  26. # include /path/to/other.conf
  27.  
  28. ################################ 常用 #####################################
  29.  
  30. # 默认情况下 redis 不是作为守护进程运行的,如果你想让它在后台运行,你就把它改成 yes。
  31. # 当redis作为守护进程运行的时候,它会写一个 pid 到 /var/run/redis.pid 文件里面。
  32. daemonize yes
  33. # 当redis作为守护进程运行的时候,它会把 pid 默认写到 /var/run/redis.pid 文件里面,
  34. # 但是你可以在这里自己制定它的文件位置。
  35. pidfile /var/run/redis.pid
  36.  
  37. # 监听端口号,默认为 6379,如果你设为 0 ,redis 将不在 socket 上监听任何客户端连接。
  38. port 6379
  39. # 客户端闲置多少秒后,断开连接
  40. timeout 0
  41. # TCP 监听的最大容纳数量
  42. #
  43. # 在高并发的环境下,你需要把这个值调高以避免客户端连接缓慢的问题。
  44. # Linux 内核会一声不响的把这个值缩小成 /proc/sys/net/core/somaxconn 对应的值,
  45. # 所以你要修改这两个值才能达到你的预期。
  46. tcp-backlog 511
  47.  
  48. # 默认情况下,redis 在 server 上所有有效的网络接口上监听客户端连接。
  49. # 你如果只想让它在一个网络接口上监听,那你就绑定一个IP或者多个IP。
  50. #
  51. # 示例,多个IP用空格隔开:
  52. #
  53. # bind 192.168.1.100 10.0.0.1
  54. # bind 127.0.0.1
  55.  
  56. # 指定 unix socket 的路径。
  57. #
  58. # unixsocket /tmp/redis.sock
  59. # unixsocketperm 755
  60.  
  61. # 指定在一个 client 空闲多少秒之后关闭连接(0 就是不管它)
  62. timeout 0
  63.  
  64. # tcp 心跳包。
  65. #
  66. # 如果设置为非零,则在与客户端缺乏通讯的时候使用 SO_KEEPALIVE 发送 tcp acks 给客户端。
  67. # 这个之所有有用,主要由两个原因:
  68. #
  69. # 1) 防止死的 peers
  70. # 2) Take the connection alive from the point of view of network
  71. # equipment in the middle.
  72. #
  73. # On Linux, the specified value (in seconds) is the period used to send ACKs.
  74. # Note that to close the connection the double of the time is needed.
  75. # On other kernels the period depends on the kernel configuration.
  76. #
  77. # A reasonable value for this option is 60 seconds.
  78. # 推荐一个合理的值就是60秒
  79. tcp-keepalive 0
  80.  
  81. # 定义日志级别。
  82. # 可以是下面的这些值:
  83. # debug (适用于开发或测试阶段)
  84. # verbose (many rarely useful info, but not a mess like the debug level)
  85. # notice (适用于生产环境)
  86. # warning (仅仅一些重要的消息被记录)
  87. loglevel notice
  88.  
  89. # 指定日志文件的位置
  90. logfile ""
  91.  
  92. # 要想把日志记录到系统日志,就把它改成 yes,
  93. # 也可以可选择性的更新其他的syslog 参数以达到你的要求
  94. # syslog-enabled no
  95.  
  96. # 设置 syslog 的 identity。
  97. # syslog-ident redis
  98.  
  99. # 设置 syslog 的 facility,必须是 USER 或者是 LOCAL0-LOCAL7 之间的值。
  100. # syslog-facility local0
  101.  
  102. # 设置数据库的数目。
  103. # 默认数据库是 DB 0,你可以在每个连接上使用 select <dbid> 命令选择一个不同的数据库,
  104. # 但是 dbid 必须是一个介于 0 到 databasees - 1 之间的值
  105. databases 16
  106.  
  107. ################################ 快照 ################################
  108. #
  109. # 存 DB 到磁盘:
  110. #
  111. # 格式:save <间隔时间(秒)> <写入次数>
  112. #
  113. # 根据给定的时间间隔和写入次数将数据保存到磁盘
  114. #
  115. # 下面的例子的意思是:
  116. # 900 秒后如果至少有 1 个 key 的值变化,则保存
  117. # 300 秒后如果至少有 10 个 key 的值变化,则保存
  118. # 60 秒后如果至少有 10000 个 key 的值变化,则保存
  119. #
  120. # 注意:你可以注释掉所有的 save 行来停用保存功能。
  121. # 也可以直接一个空字符串来实现停用:
  122. # save ""

  123. save 900 1
  124. save 300 10
  125. save 60 10000
  126.  
  127. # 默认情况下,如果 redis 最后一次的后台保存失败,redis 将停止接受写操作,
  128. # 这样以一种强硬的方式让用户知道数据不能正确的持久化到磁盘,
  129. # 否则就会没人注意到灾难的发生。
  130. #
  131. # 如果后台保存进程重新启动工作了,redis 也将自动的允许写操作。
  132. #
  133. # 然而你要是安装了靠谱的监控,你可能不希望 redis 这样做,那你就改成 no 好了。
  134. stop-writes-on-bgsave-error yes
  135.  
  136. # 是否在 dump .rdb 数据库的时候使用 LZF 压缩字符串
  137. # 默认都设为 yes
  138. # 如果你希望保存子进程节省点 cpu ,你就设置它为 no ,
  139. # 不过这个数据集可能就会比较大
  140. rdbcompression yes
  141.  
  142. # 是否校验rdb文件
  143. rdbchecksum yes
  144.  
  145. # 设置 dump 的文件位置
  146. dbfilename dump.rdb
  147.  
  148. # 工作目录
  149. # 例如上面的 dbfilename 只指定了文件名,
  150. # 但是它会写入到这个目录下。这个配置项一定是个目录,而不能是文件名。
  151. dir ./
  152.  
  153. ################################# 主从复制 #################################
  154.  
  155. # 主从复制。使用 slaveof 来让一个 redis 实例成为另一个reids 实例的副本。
  156. # 注意这个只需要在 slave 上配置。
  157. #
  158. # slaveof <masterip> <masterport>
  159.  
  160. # 如果 master 需要密码认证,就在这里设置
  161. # masterauth <master-password>
  162.  
  163. # 当一个 slave 与 master 失去联系,或者复制正在进行的时候,
  164. # slave 可能会有两种表现:
  165. #
  166. # 1) 如果为 yes ,slave 仍然会应答客户端请求,但返回的数据可能是过时,
  167. # 或者数据可能是空的在第一次同步的时候
  168. #
  169. # 2) 如果为 no ,在你执行除了 info he salveof 之外的其他命令时,
  170. # slave 都将返回一个 "SYNC with master in progress" 的错误,
  171. #
  172. slave-serve-stale-data yes
  173.  
  174. # 你可以配置一个 slave 实体是否接受写入操作。
  175. # 通过写入操作来存储一些短暂的数据对于一个 slave 实例来说可能是有用的,
  176. # 因为相对从 master 重新同步数而言,据数据写入到 slave 会更容易被删除。
  177. # 但是如果客户端因为一个错误的配置写入,也可能会导致一些问题。
  178. #
  179. # 从 redis 2.6 版起,默认 slaves 都是只读的。
  180. #
  181. # Note: read only slaves are not designed to be exposed to untrusted clients
  182. # on the internet. It's just a protection layer against misuse of the instance.
  183. # Still a read only slave exports by default all the administrative commands
  184. # such as CONFIG, DEBUG, and so forth. To a limited extent you can improve
  185. # security of read only slaves using 'rename-command' to shadow all the
  186. # administrative / dangerous commands.
  187. # 注意:只读的 slaves 没有被设计成在 internet 上暴露给不受信任的客户端。
  188. # 它仅仅是一个针对误用实例的一个保护层。
  189. slave-read-only yes
  190.  
  191. # Slaves 在一个预定义的时间间隔内发送 ping 命令到 server 。
  192. # 你可以改变这个时间间隔。默认为 10 秒。
  193. #
  194. # repl-ping-slave-period 10
  195.  
  196. # The following option sets the replication timeout for:
  197. # 设置主从复制过期时间
  198. #
  199. # 1) Bulk transfer I/O during SYNC, from the point of view of slave.
  200. # 2) Master timeout from the point of view of slaves (data, pings).
  201. # 3) Slave timeout from the point of view of masters (REPLCONF ACK pings).
  202. #
  203. # It is important to make sure that this value is greater than the value
  204. # specified for repl-ping-slave-period otherwise a timeout will be detected
  205. # every time there is low traffic between the master and the slave.
  206. # 这个值一定要比 repl-ping-slave-period 大
  207. #
  208. # repl-timeout 60
  209.  
  210. # Disable TCP_NODELAY on the slave socket after SYNC?
  211. #
  212. # If you select "yes" Redis will use a smaller number of TCP packets and
  213. # less bandwidth to send data to slaves. But this can add a delay for
  214. # the data to appear on the slave side, up to 40 milliseconds with
  215. # Linux kernels using a default configuration.
  216. #
  217. # If you select "no" the delay for data to appear on the slave side will
  218. # be reduced but more bandwidth will be used for replication.
  219. #
  220. # By default we optimize for low latency, but in very high traffic conditions
  221. # or when the master and slaves are many hops away, turning this to "yes" may
  222. # be a good idea.
  223. repl-disable-tcp-nodelay no
  224.  
  225. # 设置主从复制容量大小。这个 backlog 是一个用来在 slaves 被断开连接时
  226. # 存放 slave 数据的 buffer,所以当一个 slave 想要重新连接,通常不希望全部重新同步,
  227. # 只是部分同步就够了,仅仅传递 slave 在断开连接时丢失的这部分数据。
  228. #
  229. # The biggest the replication backlog, the longer the time the slave can be
  230. # disconnected and later be able to perform a partial resynchronization.
  231. # 这个值越大,salve 可以断开连接的时间就越长。
  232. #
  233. # The backlog is only allocated once there is at least a slave connected.
  234. #
  235. # repl-backlog-size 1mb
  236.  
  237. # After a master has no longer connected slaves for some time, the backlog
  238. # will be freed. The following option configures the amount of seconds that
  239. # need to elapse, starting from the time the last slave disconnected, for
  240. # the backlog buffer to be freed.
  241. # 在某些时候,master 不再连接 slaves,backlog 将被释放。
  242. #
  243. # A value of 0 means to never release the backlog.
  244. # 如果设置为 0 ,意味着绝不释放 backlog 。
  245. #
  246. # repl-backlog-ttl 3600
  247.  
  248. # 当 master 不能正常工作的时候,Redis Sentinel 会从 slaves 中选出一个新的 master,
  249. # 这个值越小,就越会被优先选中,但是如果是 0 , 那是意味着这个 slave 不可能被选中。
  250. #
  251. # 默认优先级为 100。
  252. slave-priority 100
  253.  
  254. # It is possible for a master to stop accepting writes if there are less than
  255. # N slaves connected, having a lag less or equal than M seconds.
  256. #
  257. # The N slaves need to be in "online" state.
  258. #
  259. # The lag in seconds, that must be <= the specified value, is calculated from
  260. # the last ping received from the slave, that is usually sent every second.
  261. #
  262. # This option does not GUARANTEES that N replicas will accept the write, but
  263. # will limit the window of exposure for lost writes in case not enough slaves
  264. # are available, to the specified number of seconds.
  265. #
  266. # For example to require at least 3 slaves with a lag <= 10 seconds use:
  267. #
  268. # min-slaves-to-write 3
  269. # min-slaves-max-lag 10
  270. #
  271. # Setting one or the other to 0 disables the feature.
  272. #
  273. # By default min-slaves-to-write is set to 0 (feature disabled) and
  274. # min-slaves-max-lag is set to 10.
  275.  
  276. ################################## 安全 ###################################
  277.  
  278. # Require clients to issue AUTH <PASSWORD> before processing any other
  279. # commands. This might be useful in environments in which you do not trust
  280. # others with access to the host running redis-server.
  281. #
  282. # This should stay commented out for backward compatibility and because most
  283. # people do not need auth (e.g. they run their own servers).
  284. #
  285. # Warning: since Redis is pretty fast an outside user can try up to
  286. # 150k passwords per second against a good box. This means that you should
  287. # use a very strong password otherwise it will be very easy to break.
  288. #
  289. # 设置认证密码
  290. # requirepass foobared
  291.  
  292. # Command renaming.
  293. #
  294. # It is possible to change the name of dangerous commands in a shared
  295. # environment. For instance the CONFIG command may be renamed into something
  296. # hard to guess so that it will still be available for internal-use tools
  297. # but not available for general clients.
  298. #
  299. # Example:
  300. #
  301. # rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52
  302. #
  303. # It is also possible to completely kill a command by renaming it into
  304. # an empty string:
  305. #
  306. # rename-command CONFIG ""
  307. #
  308. # Please note that changing the name of commands that are logged into the
  309. # AOF file or transmitted to slaves may cause problems.
  310.  
  311. ################################### 限制 ####################################
  312.  
  313. # Set the max number of connected clients at the same time. By default
  314. # this limit is set to 10000 clients, however if the Redis server is not
  315. # able to configure the process file limit to allow for the specified limit
  316. # the max number of allowed clients is set to the current file limit
  317. # minus 32 (as Redis reserves a few file descriptors for internal uses).
  318. #
  319. # 一旦达到最大限制,redis 将关闭所有的新连接
  320. # 并发送一个‘max number of clients reached’的错误。
  321. #
  322. # maxclients 10000
  323.  
  324. # 如果你设置了这个值,当缓存的数据容量达到这个值, redis 将根据你选择的
  325. # eviction 策略来移除一些 keys。
  326. #
  327. # 如果 redis 不能根据策略移除 keys ,或者是策略被设置为 ‘noeviction’,
  328. # redis 将开始响应错误给命令,如 set,lpush 等等,
  329. # 并继续响应只读的命令,如 get
  330. #
  331. # This option is usually useful when using Redis as an LRU cache, or to set
  332. # a hard memory limit for an instance (using the 'noeviction' policy).
  333. #
  334. # WARNING: If you have slaves attached to an instance with maxmemory on,
  335. # the size of the output buffers needed to feed the slaves are subtracted
  336. # from the used memory count, so that network problems / resyncs will
  337. # not trigger a loop where keys are evicted, and in turn the output
  338. # buffer of slaves is full with DELs of keys evicted triggering the deletion
  339. # of more keys, and so forth until the database is completely emptied.
  340. #
  341. # In short... if you have slaves attached it is suggested that you set a lower
  342. # limit for maxmemory so that there is some free RAM on the system for slave
  343. # output buffers (but this is not needed if the policy is 'noeviction').
  344. #
  345. # 最大使用内存
  346. # maxmemory <bytes>
  347.  
  348. # 最大内存策略,你有 5 个选择。
  349. #
  350. # volatile-lru -> remove the key with an expire set using an LRU algorithm
  351. # volatile-lru -> 使用 LRU 算法移除包含过期设置的 key 。
  352. # allkeys-lru -> remove any key accordingly to the LRU algorithm
  353. # allkeys-lru -> 根据 LRU 算法移除所有的 key 。
  354. # volatile-random -> remove a random key with an expire set
  355. # allkeys-random -> remove a random key, any key
  356. # volatile-ttl -> remove the key with the nearest expire time (minor TTL)
  357. # noeviction -> don't expire at all, just return an error on write operations
  358. # noeviction -> 不让任何 key 过期,只是给写入操作返回一个错误
  359. #
  360. # Note: with any of the above policies, Redis will return an error on write
  361. # operations, when there are not suitable keys for eviction.
  362. #
  363. # At the date of writing this commands are: set setnx setex append
  364. # incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd
  365. # sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby
  366. # zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby
  367. # getset mset msetnx exec sort
  368. #
  369. # The default is:
  370. #
  371. # maxmemory-policy noeviction
  372.  
  373. # LRU and minimal TTL algorithms are not precise algorithms but approximated
  374. # algorithms (in order to save memory), so you can tune it for speed or
  375. # accuracy. For default Redis will check five keys and pick the one that was
  376. # used less recently, you can change the sample size using the following
  377. # configuration directive.
  378. #
  379. # The default of 5 produces good enough results. 10 Approximates very closely
  380. # true LRU but costs a bit more CPU. 3 is very fast but not very accurate.
  381. #
  382. # maxmemory-samples 5
  383.  
  384. ############################## APPEND ONLY MODE ###############################
  385.  
  386. # By default Redis asynchronously dumps the dataset on disk. This mode is
  387. # good enough in many applications, but an issue with the Redis process or
  388. # a power outage may result into a few minutes of writes lost (depending on
  389. # the configured save points).
  390. #
  391. # The Append Only File is an alternative persistence mode that provides
  392. # much better durability. For instance using the default data fsync policy
  393. # (see later in the config file) Redis can lose just one second of writes in a
  394. # dramatic event like a server power outage, or a single write if something
  395. # wrong with the Redis process itself happens, but the operating system is
  396. # still running correctly.
  397. #
  398. # AOF and RDB persistence can be enabled at the same time without problems.
  399. # If the AOF is enabled on startup Redis will load the AOF, that is the file
  400. # with the better durability guarantees.
  401. #
  402. # Please check http://redis.io/topics/persistence for more information.

  403. appendonly no
  404.  
  405. # The name of the append only file (default: "appendonly.aof")

  406. appendfilename "appendonly.aof"
  407.  
  408. # The fsync() call tells the Operating System to actually write data on disk
  409. # instead to wait for more data in the output buffer. Some OS will really flush
  410. # data on disk, some other OS will just try to do it ASAP.
  411. #
  412. # Redis supports three different modes:
  413. #
  414. # no: don't fsync, just let the OS flush the data when it wants. Faster.
  415. # always: fsync after every write to the append only log . Slow, Safest.
  416. # everysec: fsync only one time every second. Compromise.
  417. #
  418. # The default is "everysec", as that's usually the right compromise between
  419. # speed and data safety. It's up to you to understand if you can relax this to
  420. # "no" that will let the operating system flush the output buffer when
  421. # it wants, for better performances (but if you can live with the idea of
  422. # some data loss consider the default persistence mode that's snapshotting),
  423. # or on the contrary, use "always" that's very slow but a bit safer than
  424. # everysec.
  425. #
  426. # More details please check the following article:
  427. # http://antirez.com/post/redis-persistence-demystified.html
  428. #
  429. # If unsure, use "everysec".
  430.  
  431. # appendfsync always
  432. appendfsync everysec
  433. # appendfsync no
  434.  
  435. # When the AOF fsync policy is set to always or everysec, and a background
  436. # saving process (a background save or AOF log background rewriting) is
  437. # performing a lot of I/O against the disk, in some Linux configurations
  438. # Redis may block too long on the fsync() call. Note that there is no fix for
  439. # this currently, as even performing fsync in a different thread will block
  440. # our synchronous write(2) call.
  441. #
  442. # In order to mitigate this problem it's possible to use the following option
  443. # that will prevent fsync() from being called in the main process while a
  444. # BGSAVE or BGREWRITEAOF is in progress.
  445. #
  446. # This means that while another child is saving, the durability of Redis is
  447. # the same as "appendfsync none". In practical terms, this means that it is
  448. # possible to lose up to 30 seconds of log in the worst scenario (with the
  449. # default Linux settings).
  450. #
  451. # If you have latency problems turn this to "yes". Otherwise leave it as
  452. # "no" that is the safest pick from the point of view of durability.

  453. no-appendfsync-on-rewrite no
  454.  
  455. # Automatic rewrite of the append only file.
  456. # Redis is able to automatically rewrite the log file implicitly calling
  457. # BGREWRITEAOF when the AOF log size grows by the specified percentage.
  458. #
  459. # This is how it works: Redis remembers the size of the AOF file after the
  460. # latest rewrite (if no rewrite has happened since the restart, the size of
  461. # the AOF at startup is used).
  462. #
  463. # This base size is compared to the current size. If the current size is
  464. # bigger than the specified percentage, the rewrite is triggered. Also
  465. # you need to specify a minimal size for the AOF file to be rewritten, this
  466. # is useful to avoid rewriting the AOF file even if the percentage increase
  467. # is reached but it is still pretty small.
  468. #
  469. # Specify a percentage of zero in order to disable the automatic AOF
  470. # rewrite feature.

  471. auto-aof-rewrite-percentage 100
  472. auto-aof-rewrite-min-size 64mb
  473.  
  474. ################################ LUA SCRIPTING ###############################
  475.  
  476. # Max execution time of a Lua script in milliseconds.
  477. #
  478. # If the maximum execution time is reached Redis will log that a script is
  479. # still in execution after the maximum allowed time and will start to
  480. # reply to queries with an error.
  481. #
  482. # When a long running script exceed the maximum execution time only the
  483. # SCRIPT KILL and SHUTDOWN NOSAVE commands are available. The first can be
  484. # used to stop a script that did not yet called write commands. The second
  485. # is the only way to shut down the server in the case a write commands was
  486. # already issue by the script but the user don't want to wait for the natural
  487. # termination of the script.
  488. #
  489. # Set it to 0 or a negative value for unlimited execution without warnings.
  490. lua-time-limit 5000
  491.  
  492. ################################ REDIS 集群 ###############################
  493. #
  494. # 启用或停用集群
  495. # cluster-enabled yes
  496.  
  497. # Every cluster node has a cluster configuration file. This file is not
  498. # intended to be edited by hand. It is created and updated by Redis nodes.
  499. # Every Redis Cluster node requires a different cluster configuration file.
  500. # Make sure that instances running in the same system does not have
  501. # overlapping cluster configuration file names.
  502. #
  503. # cluster-config-file nodes-6379.conf
  504.  
  505. # Cluster node timeout is the amount of milliseconds a node must be unreachable
  506. # for it to be considered in failure state.
  507. # Most other internal time limits are multiple of the node timeout.
  508. #
  509. # cluster-node-timeout 15000
  510.  
  511. # A slave of a failing master will avoid to start a failover if its data
  512. # looks too old.
  513. #
  514. # There is no simple way for a slave to actually have a exact measure of
  515. # its "data age", so the following two checks are performed:
  516. #
  517. # 1) If there are multiple slaves able to failover, they exchange messages
  518. # in order to try to give an advantage to the slave with the best
  519. # replication offset (more data from the master processed).
  520. # Slaves will try to get their rank by offset, and apply to the start
  521. # of the failover a delay proportional to their rank.
  522. #
  523. # 2) Every single slave computes the time of the last interaction with
  524. # its master. This can be the last ping or command received (if the master
  525. # is still in the "connected" state), or the time that elapsed since the
  526. # disconnection with the master (if the replication link is currently down).
  527. # If the last interaction is too old, the slave will not try to failover
  528. # at all.
  529. #
  530. # The point "2" can be tuned by user. Specifically a slave will not perform
  531. # the failover if, since the last interaction with the master, the time
  532. # elapsed is greater than:
  533. #
  534. # (node-timeout * slave-validity-factor) + repl-ping-slave-period
  535. #
  536. # So for example if node-timeout is 30 seconds, and the slave-validity-factor
  537. # is 10, and assuming a default repl-ping-slave-period of 10 seconds, the
  538. # slave will not try to failover if it was not able to talk with the master
  539. # for longer than 310 seconds.
  540. #
  541. # A large slave-validity-factor may allow slaves with too old data to failover
  542. # a master, while a too small value may prevent the cluster from being able to
  543. # elect a slave at all.
  544. #
  545. # For maximum availability, it is possible to set the slave-validity-factor
  546. # to a value of 0, which means, that slaves will always try to failover the
  547. # master regardless of the last time they interacted with the master.
  548. # (However they'll always try to apply a delay proportional to their
  549. # offset rank).
  550. #
  551. # Zero is the only value able to guarantee that when all the partitions heal
  552. # the cluster will always be able to continue.
  553. #
  554. # cluster-slave-validity-factor 10
  555.  
  556. # Cluster slaves are able to migrate to orphaned masters, that are masters
  557. # that are left without working slaves. This improves the cluster ability
  558. # to resist to failures as otherwise an orphaned master can't be failed over
  559. # in case of failure if it has no working slaves.
  560. #
  561. # Slaves migrate to orphaned masters only if there are still at least a
  562. # given number of other working slaves for their old master. This number
  563. # is the "migration barrier". A migration barrier of 1 means that a slave
  564. # will migrate only if there is at least 1 other working slave for its master
  565. # and so forth. It usually reflects the number of slaves you want for every
  566. # master in your cluster.
  567. #
  568. # Default is 1 (slaves migrate only if their masters remain with at least
  569. # one slave). To disable migration just set it to a very large value.
  570. # A value of 0 can be set but is useful only for debugging and dangerous
  571. # in production.
  572. #
  573. # cluster-migration-barrier 1
  574.  
  575. # In order to setup your cluster make sure to read the documentation
  576. # available at http://redis.io web site.
  577.  
  578. ################################## SLOW LOG ###################################
  579.  
  580. # The Redis Slow Log is a system to log queries that exceeded a specified
  581. # execution time. The execution time does not include the I/O operations
  582. # like talking with the client, sending the reply and so forth,
  583. # but just the time needed to actually execute the command (this is the only
  584. # stage of command execution where the thread is blocked and can not serve
  585. # other requests in the meantime).
  586. #
  587. # You can configure the slow log with two parameters: one tells Redis
  588. # what is the execution time, in microseconds, to exceed in order for the
  589. # command to get logged, and the other parameter is the length of the
  590. # slow log. When a new command is logged the oldest one is removed from the
  591. # queue of logged commands.
  592.  
  593. # The following time is expressed in microseconds, so 1000000 is equivalent
  594. # to one second. Note that a negative number disables the slow log, while
  595. # a value of zero forces the logging of every command.
  596. slowlog-log-slower-than 10000
  597.  
  598. # There is no limit to this length. Just be aware that it will consume memory.
  599. # You can reclaim memory used by the slow log with SLOWLOG RESET.
  600. slowlog-max-len 128
  601.  
  602. ############################# Event notification ##############################
  603.  
  604. # Redis can notify Pub/Sub clients about events happening in the key space.
  605. # This feature is documented at http://redis.io/topics/keyspace-events
  606. #
  607. # For instance if keyspace events notification is enabled, and a client
  608. # performs a DEL operation on key "foo" stored in the Database 0, two
  609. # messages will be published via Pub/Sub:
  610. #
  611. # PUBLISH __keyspace@0__:foo del
  612. # PUBLISH __keyevent@0__:del foo
  613. #
  614. # It is possible to select the events that Redis will notify among a set
  615. # of classes. Every class is identified by a single character:
  616. #
  617. # K Keyspace events, published with __keyspace@<db>__ prefix.
  618. # E Keyevent events, published with __keyevent@<db>__ prefix.
  619. # g Generic commands (non-type specific) like DEL, EXPIRE, RENAME, ...
  620. # $ String commands
  621. # l List commands
  622. # s Set commands
  623. # h Hash commands
  624. # z Sorted set commands
  625. # x Expired events (events generated every time a key expires)
  626. # e Evicted events (events generated when a key is evicted for maxmemory)
  627. # A Alias for g$lshzxe, so that the "AKE" string means all the events.
  628. #
  629. # The "notify-keyspace-events" takes as argument a string that is composed
  630. # by zero or multiple characters. The empty string means that notifications
  631. # are disabled at all.
  632. #
  633. # Example: to enable list and generic events, from the point of view of the
  634. # event name, use:
  635. #
  636. # notify-keyspace-events Elg
  637. #
  638. # Example 2: to get the stream of the expired keys subscribing to channel
  639. # name __keyevent@0__:expired use:
  640. #
  641. # notify-keyspace-events Ex
  642. #
  643. # By default all notifications are disabled because most users don't need
  644. # this feature and the feature has some overhead. Note that if you don't
  645. # specify at least one of K or E, no events will be delivered.
  646. notify-keyspace-events ""
  647.  
  648. ############################### ADVANCED CONFIG ###############################
  649.  
  650. # Hashes are encoded using a memory efficient data structure when they have a
  651. # small number of entries, and the biggest entry does not exceed a given
  652. # threshold. These thresholds can be configured using the following directives.
  653. hash-max-ziplist-entries 512
  654. hash-max-ziplist-value 64
  655.  
  656. # Similarly to hashes, small lists are also encoded in a special way in order
  657. # to save a lot of space. The special representation is only used when
  658. # you are under the following limits:
  659. list-max-ziplist-entries 512
  660. list-max-ziplist-value 64
  661.  
  662. # Sets have a special encoding in just one case: when a set is composed
  663. # of just strings that happens to be integers in radix 10 in the range
  664. # of 64 bit signed integers.
  665. # The following configuration setting sets the limit in the size of the
  666. # set in order to use this special memory saving encoding.
  667. set-max-intset-entries 512
  668.  
  669. # Similarly to hashes and lists, sorted sets are also specially encoded in
  670. # order to save a lot of space. This encoding is only used when the length and
  671. # elements of a sorted set are below the following limits:
  672. zset-max-ziplist-entries 128
  673. zset-max-ziplist-value 64
  674.  
  675. # HyperLogLog sparse representation bytes limit. The limit includes the
  676. # 16 bytes header. When an HyperLogLog using the sparse representation crosses
  677. # this limit, it is converted into the dense representation.
  678. #
  679. # A value greater than 16000 is totally useless, since at that point the
  680. # dense representation is more memory efficient.
  681. #
  682. # The suggested value is ~ 3000 in order to have the benefits of
  683. # the space efficient encoding without slowing down too much PFADD,
  684. # which is O(N) with the sparse encoding. The value can be raised to
  685. # ~ 10000 when CPU is not a concern, but space is, and the data set is
  686. # composed of many HyperLogLogs with cardinality in the 0 - 15000 range.
  687. hll-sparse-max-bytes 3000
  688.  
  689. # Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in
  690. # order to help rehashing the main Redis hash table (the one mapping top-level
  691. # keys to values). The hash table implementation Redis uses (see dict.c)
  692. # performs a lazy rehashing: the more operation you run into a hash table
  693. # that is rehashing, the more rehashing "steps" are performed, so if the
  694. # server is idle the rehashing is never complete and some more memory is used
  695. # by the hash table.
  696. #
  697. # The default is to use this millisecond 10 times every second in order to
  698. # active rehashing the main dictionaries, freeing memory when possible.
  699. #
  700. # If unsure:
  701. # use "activerehashing no" if you have hard latency requirements and it is
  702. # not a good thing in your environment that Redis can reply form time to time
  703. # to queries with 2 milliseconds delay.
  704. #
  705. # use "activerehashing yes" if you don't have such hard requirements but
  706. # want to free memory asap when possible.
  707. activerehashing yes
  708.  
  709. # The client output buffer limits can be used to force disconnection of clients
  710. # that are not reading data from the server fast enough for some reason (a
  711. # common reason is that a Pub/Sub client can't consume messages as fast as the
  712. # publisher can produce them).
  713. #
  714. # The limit can be set differently for the three different classes of clients:
  715. #
  716. # normal -> normal clients
  717. # slave -> slave clients and MONITOR clients
  718. # pubsub -> clients subscribed to at least one pubsub channel or pattern
  719. #
  720. # The syntax of every client-output-buffer-limit directive is the following:
  721. #
  722. # client-output-buffer-limit <class> <hard limit> <soft limit> <soft seconds>
  723. #
  724. # A client is immediately disconnected once the hard limit is reached, or if
  725. # the soft limit is reached and remains reached for the specified number of
  726. # seconds (continuously).
  727. # So for instance if the hard limit is 32 megabytes and the soft limit is
  728. # 16 megabytes / 10 seconds, the client will get disconnected immediately
  729. # if the size of the output buffers reach 32 megabytes, but will also get
  730. # disconnected if the client reaches 16 megabytes and continuously overcomes
  731. # the limit for 10 seconds.
  732. #
  733. # By default normal clients are not limited because they don't receive data
  734. # without asking (in a push way), but just after a request, so only
  735. # asynchronous clients may create a scenario where data is requested faster
  736. # than it can read.
  737. #
  738. # Instead there is a default limit for pubsub and slave clients, since
  739. # subscribers and slaves receive data in a push fashion.
  740. #
  741. # Both the hard or the soft limit can be disabled by setting them to zero.
  742. client-output-buffer-limit normal 0 0 0
  743. client-output-buffer-limit slave 256mb 64mb 60
  744. client-output-buffer-limit pubsub 32mb 8mb 60
  745.  
  746. # Redis calls an internal function to perform many background tasks, like
  747. # closing connections of clients in timeout, purging expired keys that are
  748. # never requested, and so forth.
  749. #
  750. # Not all tasks are performed with the same frequency, but Redis checks for
  751. # tasks to perform accordingly to the specified "hz" value.
  752. #
  753. # By default "hz" is set to 10. Raising the value will use more CPU when
  754. # Redis is idle, but at the same time will make Redis more responsive when
  755. # there are many keys expiring at the same time, and timeouts may be
  756. # handled with more precision.
  757. #
  758. # The range is between 1 and 500, however a value over 100 is usually not
  759. # a good idea. Most users should use the default of 10 and raise this up to
  760. # 100 only in environments where very low latency is required.
  761. hz 10
  762.  
  763. # When a child rewrites the AOF file, if the following option is enabled
  764. # the file will be fsync-ed every 32 MB of data generated. This is useful
  765. # in order to commit the file to the disk more incrementally and avoid
  766. # big latency spikes.
  767. aof-rewrite-incremental-fsync yes

[原]Redis详细配置介绍的更多相关文章

  1. Window VNC远程控制LINUX:VNC详细配置介绍

    Window VNC远程控制LINUX:VNC详细配置介绍 //---------------------------------------vnc linux下的详细配置 1.VNC的启动/停止/重 ...

  2. FastDfs之StorageServer的详细配置介绍

    #这个配置文件是否失效 disabled=false #false为有效 true为无效 # 本storage server所属的group名 group_name=group1 # 可以版定一个ip ...

  3. FastDfs之TrackerServer的详细配置介绍

    # is this config file disabled # false for enabled # true for disabled disabled=false #当前配置是否不可用fals ...

  4. redis详细配置文件

    redis 单机版自己指定配置 #修改为守护模式 daemonize yes #设置进程锁文件 pidfile /usr/local/redis/redis.pid #端口 port 6379 #客户 ...

  5. Redis主从配置详细过程

    Redis的主从复制功能非常强大,一个master可以拥有多个slave,而一个slave又可以拥有多个slave,如此下去,形成了强大的多级服务器集群架构.下面楼主简单的进行一下配置. 1.上面安装 ...

  6. 解决---MISCONF Redis被配置为保存RDB快照,但目前无法在磁盘上存留。可能修改数据集的命令被禁用。请检查Redis日志,了解有关错误的详细信息。

    解决---MISCONF Redis被配置为保存RDB快照,但目前无法在磁盘上存留.可能修改数据集的命令被禁用.请检查Redis日志,了解有关错误的详细信息. 出现bug: 在学习celery,将数据 ...

  7. .net core的配置介绍(二):自定义配置(Zookeeper,数据库,Redis)

    上一篇介绍了.net core的配置原理已经系统提供的一些常用的配置,但有时我们的配置是存放在Zookeeper,DB,Redis中的,这就需要我们自己去实现集成了. 这里再介绍几个我们用的多的配置集 ...

  8. 通过哨兵机制实现Redis主从配置以及java调用

    Redis版本:3.0.7 操作环境:Linux 一.redis 主从配置的作用是什么 redis主从配置,配置master 只能为写,slave只能为读,在客户端对poolconnect请求时候,, ...

  9. Ubuntu16.04安装Redis并配置

    Ubuntu16.04安装Redis并配置 2018年05月22日 10:40:35 Hello_刘 阅读数:29146   Ubuntu16.04安装Redis并配置 1):安装: 1:终端命令下载 ...

随机推荐

  1. awk正则匹配nginx日志【原创】

    查看网页访问代码不为200和30x所有行的内容 awk '{if($9!~/200|30*/) print $0}' /app/logs/http_access.log 或 awk '$9!~/200 ...

  2. screen命令使用方法【转】

    在linux的环境中,我们想要在后台持续运行一些脚本,但是又因为关闭这个tty的话,脚本就会中断,这个时候我们就需要screen这个工具的帮助啦! 基础   1 首先先查看下否则有这个工具.如果运行s ...

  3. STL中heap相关函数

    heap并不是属于STL中的containers,而是在<algorithm>下提供了相关的函数 make_heap,sort_heap,pop_heap,push_heap 函数的说明: ...

  4. idea关于断点的补充

    黑背景版: 先编译好要调试的程序.1.设置断点

  5. ubuntu16.04 安装 python3.6, 并创建虚拟环境(使用python3.6)

    ubuntu16.04 安装 python3.6, 并创建虚拟环境(使用python3.6) ubuntu16.04中默认安装了 python2.7 python3 python3.5.2 (注意 : ...

  6. 转:google测试分享-分层测试

    原文: http://blog.sina.com.cn/s/blog_6cf812be0102vctg.html 上一次分享了google测试分享-SET和TE,有一些自动化测试的细节没有说清楚,那这 ...

  7. python抓取链家房源信息(三)

    之前写过一个链家网北京二手房的数据抓取,然后本来今天想着要把所有的东西弄完,但是临时有事出去了一趟,耽搁了一下,然后现在是想着把北京的二手房的信息都进行抓取,并且存储在mongodb中, 首先是通过' ...

  8. CVE-2010-3971 CSS内存破坏漏洞分析

    看了仙果版主的议题演讲,其中提到cve-2010-3971是一个浏览器漏洞利用中的里程碑.于是找来POC,尝试分析一下. 1.漏洞重现 XP SP3+ie6.0环境 poc如下: poc.htm &l ...

  9. 全栈Python 必备库

    强大的库: 转自:微信公众号 Python最棒的地方之一,就是大量的第三方库,覆盖之广,令人惊叹.Python 库有一个缺陷就是默认会进行全局安装.为了使每个项目都有一个独立的环境,需要使用工具vir ...

  10. day4 作业计算器

    作业:计算器开发 (1)实现加减乘除及拓号优先级解析: (2)用户输入 1 - 2 * ( (60-30 +(-40/5) * (-9-2*5/-3 + 7 /3*99/4*2998 +10 * 56 ...