redis.conf 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. # Redis configuration file example
  2. # Note on units: when memory size is needed, it is possible to specifiy
  3. # it in the usual form of 1k 5GB 4M and so forth:
  4. #
  5. # 1k => 1000 bytes
  6. # 1kb => 1024 bytes
  7. # 1m => 1000000 bytes
  8. # 1mb => 1024*1024 bytes
  9. # 1g => 1000000000 bytes
  10. # 1gb => 1024*1024*1024 bytes
  11. #
  12. # units are case insensitive so 1GB 1Gb 1gB are all the same.
  13. # By default Redis does not run as a daemon. Use 'yes' if you need it.
  14. # Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
  15. daemonize no
  16. # When running daemonized, Redis writes a pid file in /var/run/redis.pid by
  17. # default. You can specify a custom pid file location here.
  18. pidfile /var/run/redis.pid
  19. # Accept connections on the specified port, default is 6379.
  20. # If port 0 is specified Redis will not listen on a TCP socket.
  21. port 6379
  22. # If you want you can bind a single interface, if the bind option is not
  23. # specified all the interfaces will listen for incoming connections.
  24. #
  25. # bind 127.0.0.1
  26. # Specify the path for the unix socket that will be used to listen for
  27. # incoming connections. There is no default, so Redis will not listen
  28. # on a unix socket when not specified.
  29. #
  30. # unixsocket /tmp/redis.sock
  31. # unixsocketperm 755
  32. # Close the connection after a client is idle for N seconds (0 to disable)
  33. timeout 0
  34. # Set server verbosity to 'debug'
  35. # it can be one of:
  36. # debug (a lot of information, useful for development/testing)
  37. # verbose (many rarely useful info, but not a mess like the debug level)
  38. # notice (moderately verbose, what you want in production probably)
  39. # warning (only very important / critical messages are logged)
  40. loglevel verbose
  41. # Specify the log file name. Also 'stdout' can be used to force
  42. # Redis to log on the standard output. Note that if you use standard
  43. # output for logging but daemonize, logs will be sent to /dev/null
  44. logfile stdout
  45. # To enable logging to the system logger, just set 'syslog-enabled' to yes,
  46. # and optionally update the other syslog parameters to suit your needs.
  47. # syslog-enabled no
  48. # Specify the syslog identity.
  49. # syslog-ident redis
  50. # Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7.
  51. # syslog-facility local0
  52. # Set the number of databases. The default database is DB 0, you can select
  53. # a different one on a per-connection basis using SELECT <dbid> where
  54. # dbid is a number between 0 and 'databases'-1
  55. databases 16
  56. ################################ SNAPSHOTTING #################################
  57. #
  58. # Save the DB on disk:
  59. #
  60. # save <seconds> <changes>
  61. #
  62. # Will save the DB if both the given number of seconds and the given
  63. # number of write operations against the DB occurred.
  64. #
  65. # In the example below the behaviour will be to save:
  66. # after 900 sec (15 min) if at least 1 key changed
  67. # after 300 sec (5 min) if at least 10 keys changed
  68. # after 60 sec if at least 10000 keys changed
  69. #
  70. # Note: you can disable saving at all commenting all the "save" lines.
  71. save 900 1
  72. save 300 10
  73. save 60 10000
  74. # Compress string objects using LZF when dump .rdb databases?
  75. # For default that's set to 'yes' as it's almost always a win.
  76. # If you want to save some CPU in the saving child set it to 'no' but
  77. # the dataset will likely be bigger if you have compressible values or keys.
  78. rdbcompression yes
  79. # The filename where to dump the DB
  80. dbfilename dump.rdb
  81. # The working directory.
  82. #
  83. # The DB will be written inside this directory, with the filename specified
  84. # above using the 'dbfilename' configuration directive.
  85. #
  86. # Also the Append Only File will be created inside this directory.
  87. #
  88. # Note that you must specify a directory here, not a file name.
  89. dir ./
  90. ################################# REPLICATION #################################
  91. # Master-Slave replication. Use slaveof to make a Redis instance a copy of
  92. # another Redis server. Note that the configuration is local to the slave
  93. # so for example it is possible to configure the slave to save the DB with a
  94. # different interval, or to listen to another port, and so on.
  95. #
  96. # slaveof <masterip> <masterport>
  97. # If the master is password protected (using the "requirepass" configuration
  98. # directive below) it is possible to tell the slave to authenticate before
  99. # starting the replication synchronization process, otherwise the master will
  100. # refuse the slave request.
  101. #
  102. # masterauth <master-password>
  103. # When a slave lost the connection with the master, or when the replication
  104. # is still in progress, the slave can act in two different ways:
  105. #
  106. # 1) if slave-serve-stale-data is set to 'yes' (the default) the slave will
  107. # still reply to client requests, possibly with out of data data, or the
  108. # data set may just be empty if this is the first synchronization.
  109. #
  110. # 2) if slave-serve-stale data is set to 'no' the slave will reply with
  111. # an error "SYNC with master in progress" to all the kind of commands
  112. # but to INFO and SLAVEOF.
  113. #
  114. slave-serve-stale-data yes
  115. # Slaves send PINGs to server in a predefined interval. It's possible to change
  116. # this interval with the repl_ping_slave_period option. The default value is 10
  117. # seconds.
  118. #
  119. # repl-ping-slave-period 10
  120. # The following option sets a timeout for both Bulk transfer I/O timeout and
  121. # master data or ping response timeout. The default value is 60 seconds.
  122. #
  123. # It is important to make sure that this value is greater than the value
  124. # specified for repl-ping-slave-period otherwise a timeout will be detected
  125. # every time there is low traffic between the master and the slave.
  126. #
  127. # repl-timeout 60
  128. # The slave priority is an integer number published by Redis in the INFO output.
  129. # It is used by Redis Sentinel in order to select a slave to promote into a
  130. # master if the master is no longer working correctly.
  131. #
  132. # A slave with a low priority number is considered better for promotion, so
  133. # for instance if there are three slaves with priority 10, 100, 25 Sentinel will
  134. # pick the one wtih priority 10, that is the lowest.
  135. #
  136. # However a special priority of 0 marks the slave as not able to perform the
  137. # role of master, so a slave with priority of 0 will never be selected by
  138. # Redis Sentinel for promotion.
  139. #
  140. # By default the priority is 100.
  141. slave-priority 100
  142. ################################## SECURITY ###################################
  143. # Require clients to issue AUTH <PASSWORD> before processing any other
  144. # commands. This might be useful in environments in which you do not trust
  145. # others with access to the host running redis-server.
  146. #
  147. # This should stay commented out for backward compatibility and because most
  148. # people do not need auth (e.g. they run their own servers).
  149. #
  150. # Warning: since Redis is pretty fast an outside user can try up to
  151. # 150k passwords per second against a good box. This means that you should
  152. # use a very strong password otherwise it will be very easy to break.
  153. #
  154. # requirepass foobared
  155. # Command renaming.
  156. #
  157. # It is possilbe to change the name of dangerous commands in a shared
  158. # environment. For instance the CONFIG command may be renamed into something
  159. # of hard to guess so that it will be still available for internal-use
  160. # tools but not available for general clients.
  161. #
  162. # Example:
  163. #
  164. # rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52
  165. #
  166. # It is also possilbe to completely kill a command renaming it into
  167. # an empty string:
  168. #
  169. # rename-command CONFIG ""
  170. ################################### LIMITS ####################################
  171. # Set the max number of connected clients at the same time. By default there
  172. # is no limit, and it's up to the number of file descriptors the Redis process
  173. # is able to open. The special value '0' means no limits.
  174. # Once the limit is reached Redis will close all the new connections sending
  175. # an error 'max number of clients reached'.
  176. #
  177. # maxclients 128
  178. # Don't use more memory than the specified amount of bytes.
  179. # When the memory limit is reached Redis will try to remove keys
  180. # accordingly to the eviction policy selected (see maxmemmory-policy).
  181. #
  182. # If Redis can't remove keys according to the policy, or if the policy is
  183. # set to 'noeviction', Redis will start to reply with errors to commands
  184. # that would use more memory, like SET, LPUSH, and so on, and will continue
  185. # to reply to read-only commands like GET.
  186. #
  187. # This option is usually useful when using Redis as an LRU cache, or to set
  188. # an hard memory limit for an instance (using the 'noeviction' policy).
  189. #
  190. # WARNING: If you have slaves attached to an instance with maxmemory on,
  191. # the size of the output buffers needed to feed the slaves are subtracted
  192. # from the used memory count, so that network problems / resyncs will
  193. # not trigger a loop where keys are evicted, and in turn the output
  194. # buffer of slaves is full with DELs of keys evicted triggering the deletion
  195. # of more keys, and so forth until the database is completely emptied.
  196. #
  197. # In short... if you have slaves attached it is suggested that you set a lower
  198. # limit for maxmemory so that there is some free RAM on the system for slave
  199. # output buffers (but this is not needed if the policy is 'noeviction').
  200. #
  201. # maxmemory <bytes>
  202. # MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
  203. # is reached? You can select among five behavior:
  204. #
  205. # volatile-lru -> remove the key with an expire set using an LRU algorithm
  206. # allkeys-lru -> remove any key accordingly to the LRU algorithm
  207. # volatile-random -> remove a random key with an expire set
  208. # allkeys->random -> remove a random key, any key
  209. # volatile-ttl -> remove the key with the nearest expire time (minor TTL)
  210. # noeviction -> don't expire at all, just return an error on write operations
  211. #
  212. # Note: with all the kind of policies, Redis will return an error on write
  213. # operations, when there are not suitable keys for eviction.
  214. #
  215. # At the date of writing this commands are: set setnx setex append
  216. # incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd
  217. # sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby
  218. # zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby
  219. # getset mset msetnx exec sort
  220. #
  221. # The default is:
  222. #
  223. # maxmemory-policy volatile-lru
  224. # LRU and minimal TTL algorithms are not precise algorithms but approximated
  225. # algorithms (in order to save memory), so you can select as well the sample
  226. # size to check. For instance for default Redis will check three keys and
  227. # pick the one that was used less recently, you can change the sample size
  228. # using the following configuration directive.
  229. #
  230. # maxmemory-samples 3
  231. ############################## APPEND ONLY MODE ###############################
  232. # By default Redis asynchronously dumps the dataset on disk. If you can live
  233. # with the idea that the latest records will be lost if something like a crash
  234. # happens this is the preferred way to run Redis. If instead you care a lot
  235. # about your data and don't want to that a single record can get lost you should
  236. # enable the append only mode: when this mode is enabled Redis will append
  237. # every write operation received in the file appendonly.aof. This file will
  238. # be read on startup in order to rebuild the full dataset in memory.
  239. #
  240. # Note that you can have both the async dumps and the append only file if you
  241. # like (you have to comment the "save" statements above to disable the dumps).
  242. # Still if append only mode is enabled Redis will load the data from the
  243. # log file at startup ignoring the dump.rdb file.
  244. #
  245. # IMPORTANT: Check the BGREWRITEAOF to check how to rewrite the append
  246. # log file in background when it gets too big.
  247. appendonly no
  248. # The name of the append only file (default: "appendonly.aof")
  249. # appendfilename appendonly.aof
  250. # The fsync() call tells the Operating System to actually write data on disk
  251. # instead to wait for more data in the output buffer. Some OS will really flush
  252. # data on disk, some other OS will just try to do it ASAP.
  253. #
  254. # Redis supports three different modes:
  255. #
  256. # no: don't fsync, just let the OS flush the data when it wants. Faster.
  257. # always: fsync after every write to the append only log . Slow, Safest.
  258. # everysec: fsync only if one second passed since the last fsync. Compromise.
  259. #
  260. # The default is "everysec" that's usually the right compromise between
  261. # speed and data safety. It's up to you to understand if you can relax this to
  262. # "no" that will will let the operating system flush the output buffer when
  263. # it wants, for better performances (but if you can live with the idea of
  264. # some data loss consider the default persistence mode that's snapshotting),
  265. # or on the contrary, use "always" that's very slow but a bit safer than
  266. # everysec.
  267. #
  268. # If unsure, use "everysec".
  269. # appendfsync always
  270. appendfsync everysec
  271. # appendfsync no
  272. # When the AOF fsync policy is set to always or everysec, and a background
  273. # saving process (a background save or AOF log background rewriting) is
  274. # performing a lot of I/O against the disk, in some Linux configurations
  275. # Redis may block too long on the fsync() call. Note that there is no fix for
  276. # this currently, as even performing fsync in a different thread will block
  277. # our synchronous write(2) call.
  278. #
  279. # In order to mitigate this problem it's possible to use the following option
  280. # that will prevent fsync() from being called in the main process while a
  281. # BGSAVE or BGREWRITEAOF is in progress.
  282. #
  283. # This means that while another child is saving the durability of Redis is
  284. # the same as "appendfsync none", that in pratical terms means that it is
  285. # possible to lost up to 30 seconds of log in the worst scenario (with the
  286. # default Linux settings).
  287. #
  288. # If you have latency problems turn this to "yes". Otherwise leave it as
  289. # "no" that is the safest pick from the point of view of durability.
  290. no-appendfsync-on-rewrite no
  291. # Automatic rewrite of the append only file.
  292. # Redis is able to automatically rewrite the log file implicitly calling
  293. # BGREWRITEAOF when the AOF log size will growth by the specified percentage.
  294. #
  295. # This is how it works: Redis remembers the size of the AOF file after the
  296. # latest rewrite (or if no rewrite happened since the restart, the size of
  297. # the AOF at startup is used).
  298. #
  299. # This base size is compared to the current size. If the current size is
  300. # bigger than the specified percentage, the rewrite is triggered. Also
  301. # you need to specify a minimal size for the AOF file to be rewritten, this
  302. # is useful to avoid rewriting the AOF file even if the percentage increase
  303. # is reached but it is still pretty small.
  304. #
  305. # Specify a precentage of zero in order to disable the automatic AOF
  306. # rewrite feature.
  307. auto-aof-rewrite-percentage 100
  308. auto-aof-rewrite-min-size 64mb
  309. ################################## SLOW LOG ###################################
  310. # The Redis Slow Log is a system to log queries that exceeded a specified
  311. # execution time. The execution time does not include the I/O operations
  312. # like talking with the client, sending the reply and so forth,
  313. # but just the time needed to actually execute the command (this is the only
  314. # stage of command execution where the thread is blocked and can not serve
  315. # other requests in the meantime).
  316. #
  317. # You can configure the slow log with two parameters: one tells Redis
  318. # what is the execution time, in microseconds, to exceed in order for the
  319. # command to get logged, and the other parameter is the length of the
  320. # slow log. When a new command is logged the oldest one is removed from the
  321. # queue of logged commands.
  322. # The following time is expressed in microseconds, so 1000000 is equivalent
  323. # to one second. Note that a negative number disables the slow log, while
  324. # a value of zero forces the logging of every command.
  325. slowlog-log-slower-than 10000
  326. # There is no limit to this length. Just be aware that it will consume memory.
  327. # You can reclaim memory used by the slow log with SLOWLOG RESET.
  328. slowlog-max-len 128
  329. ################################ VIRTUAL MEMORY ###############################
  330. ### WARNING! Virtual Memory is deprecated in Redis 2.4
  331. ### The use of Virtual Memory is strongly discouraged.
  332. # Virtual Memory allows Redis to work with datasets bigger than the actual
  333. # amount of RAM needed to hold the whole dataset in memory.
  334. # In order to do so very used keys are taken in memory while the other keys
  335. # are swapped into a swap file, similarly to what operating systems do
  336. # with memory pages.
  337. #
  338. # To enable VM just set 'vm-enabled' to yes, and set the following three
  339. # VM parameters accordingly to your needs.
  340. vm-enabled no
  341. # vm-enabled yes
  342. # This is the path of the Redis swap file. As you can guess, swap files
  343. # can't be shared by different Redis instances, so make sure to use a swap
  344. # file for every redis process you are running. Redis will complain if the
  345. # swap file is already in use.
  346. #
  347. # The best kind of storage for the Redis swap file (that's accessed at random)
  348. # is a Solid State Disk (SSD).
  349. #
  350. # *** WARNING *** if you are using a shared hosting the default of putting
  351. # the swap file under /tmp is not secure. Create a dir with access granted
  352. # only to Redis user and configure Redis to create the swap file there.
  353. vm-swap-file /tmp/redis.swap
  354. # vm-max-memory configures the VM to use at max the specified amount of
  355. # RAM. Everything that deos not fit will be swapped on disk *if* possible, that
  356. # is, if there is still enough contiguous space in the swap file.
  357. #
  358. # With vm-max-memory 0 the system will swap everything it can. Not a good
  359. # default, just specify the max amount of RAM you can in bytes, but it's
  360. # better to leave some margin. For instance specify an amount of RAM
  361. # that's more or less between 60 and 80% of your free RAM.
  362. vm-max-memory 0
  363. # Redis swap files is split into pages. An object can be saved using multiple
  364. # contiguous pages, but pages can't be shared between different objects.
  365. # So if your page is too big, small objects swapped out on disk will waste
  366. # a lot of space. If you page is too small, there is less space in the swap
  367. # file (assuming you configured the same number of total swap file pages).
  368. #
  369. # If you use a lot of small objects, use a page size of 64 or 32 bytes.
  370. # If you use a lot of big objects, use a bigger page size.
  371. # If unsure, use the default :)
  372. vm-page-size 32
  373. # Number of total memory pages in the swap file.
  374. # Given that the page table (a bitmap of free/used pages) is taken in memory,
  375. # every 8 pages on disk will consume 1 byte of RAM.
  376. #
  377. # The total swap size is vm-page-size * vm-pages
  378. #
  379. # With the default of 32-bytes memory pages and 134217728 pages Redis will
  380. # use a 4 GB swap file, that will use 16 MB of RAM for the page table.
  381. #
  382. # It's better to use the smallest acceptable value for your application,
  383. # but the default is large in order to work in most conditions.
  384. vm-pages 134217728
  385. # Max number of VM I/O threads running at the same time.
  386. # This threads are used to read/write data from/to swap file, since they
  387. # also encode and decode objects from disk to memory or the reverse, a bigger
  388. # number of threads can help with big objects even if they can't help with
  389. # I/O itself as the physical device may not be able to couple with many
  390. # reads/writes operations at the same time.
  391. #
  392. # The special value of 0 turn off threaded I/O and enables the blocking
  393. # Virtual Memory implementation.
  394. vm-max-threads 4
  395. ############################### ADVANCED CONFIG ###############################
  396. # Hashes are encoded in a special way (much more memory efficient) when they
  397. # have at max a given numer of elements, and the biggest element does not
  398. # exceed a given threshold. You can configure this limits with the following
  399. # configuration directives.
  400. hash-max-zipmap-entries 512
  401. hash-max-zipmap-value 64
  402. # Similarly to hashes, small lists are also encoded in a special way in order
  403. # to save a lot of space. The special representation is only used when
  404. # you are under the following limits:
  405. list-max-ziplist-entries 512
  406. list-max-ziplist-value 64
  407. # Sets have a special encoding in just one case: when a set is composed
  408. # of just strings that happens to be integers in radix 10 in the range
  409. # of 64 bit signed integers.
  410. # The following configuration setting sets the limit in the size of the
  411. # set in order to use this special memory saving encoding.
  412. set-max-intset-entries 512
  413. # Similarly to hashes and lists, sorted sets are also specially encoded in
  414. # order to save a lot of space. This encoding is only used when the length and
  415. # elements of a sorted set are below the following limits:
  416. zset-max-ziplist-entries 128
  417. zset-max-ziplist-value 64
  418. # Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in
  419. # order to help rehashing the main Redis hash table (the one mapping top-level
  420. # keys to values). The hash table implementation redis uses (see dict.c)
  421. # performs a lazy rehashing: the more operation you run into an hash table
  422. # that is rhashing, the more rehashing "steps" are performed, so if the
  423. # server is idle the rehashing is never complete and some more memory is used
  424. # by the hash table.
  425. #
  426. # The default is to use this millisecond 10 times every second in order to
  427. # active rehashing the main dictionaries, freeing memory when possible.
  428. #
  429. # If unsure:
  430. # use "activerehashing no" if you have hard latency requirements and it is
  431. # not a good thing in your environment that Redis can reply form time to time
  432. # to queries with 2 milliseconds delay.
  433. #
  434. # use "activerehashing yes" if you don't have such hard requirements but
  435. # want to free memory asap when possible.
  436. activerehashing yes
  437. ################################## INCLUDES ###################################
  438. # Include one or more other config files here. This is useful if you
  439. # have a standard template that goes to all redis server but also need
  440. # to customize a few per-server settings. Include files can include
  441. # other files, so use this wisely.
  442. #
  443. # include /path/to/local.conf
  444. # include /path/to/other.conf