redis.conf 19 KB

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