redis.conf.tpl 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  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 yes
  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 $PIDFILE
  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 $REDIS_PORT
  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 $REDIS_LOG_FILE
  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 $REDIS_DATA_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. # Automatic rewrite of the append only file.
  258. # Redis is able to automatically rewrite the log file implicitly calling
  259. # BGREWRITEAOF when the AOF log size will growth by the specified percentage.
  260. #
  261. # This is how it works: Redis remembers the size of the AOF file after the
  262. # latest rewrite (or if no rewrite happened since the restart, the size of
  263. # the AOF at startup is used).
  264. #
  265. # This base size is compared to the current size. If the current size is
  266. # bigger than the specified percentage, the rewrite is triggered. Also
  267. # you need to specify a minimal size for the AOF file to be rewritten, this
  268. # is useful to avoid rewriting the AOF file even if the percentage increase
  269. # is reached but it is still pretty small.
  270. #
  271. # Specify a precentage of zero in order to disable the automatic AOF
  272. # rewrite feature.
  273. auto-aof-rewrite-percentage 100
  274. auto-aof-rewrite-min-size 64mb
  275. ################################ LUA SCRIPTING ###############################
  276. # Max execution time of a Lua script in milliseconds.
  277. # This prevents that a programming error generating an infinite loop will block
  278. # your server forever. Set it to 0 or a negative value for unlimited execution.
  279. #lua-time-limit 60000
  280. ################################## SLOW LOG ###################################
  281. # The Redis Slow Log is a system to log queries that exceeded a specified
  282. # execution time. The execution time does not include the I/O operations
  283. # like talking with the client, sending the reply and so forth,
  284. # but just the time needed to actually execute the command (this is the only
  285. # stage of command execution where the thread is blocked and can not serve
  286. # other requests in the meantime).
  287. #
  288. # You can configure the slow log with two parameters: one tells Redis
  289. # what is the execution time, in microseconds, to exceed in order for the
  290. # command to get logged, and the other parameter is the length of the
  291. # slow log. When a new command is logged the oldest one is removed from the
  292. # queue of logged commands.
  293. # The following time is expressed in microseconds, so 1000000 is equivalent
  294. # to one second. Note that a negative number disables the slow log, while
  295. # a value of zero forces the logging of every command.
  296. slowlog-log-slower-than 10000
  297. # There is no limit to this length. Just be aware that it will consume memory.
  298. # You can reclaim memory used by the slow log with SLOWLOG RESET.
  299. slowlog-max-len 1024
  300. ############################### ADVANCED CONFIG ###############################
  301. # Hashes are encoded in a special way (much more memory efficient) when they
  302. # have at max a given numer of elements, and the biggest element does not
  303. # exceed a given threshold. You can configure this limits with the following
  304. # configuration directives.
  305. hash-max-zipmap-entries 512
  306. hash-max-zipmap-value 64
  307. # Similarly to hashes, small lists are also encoded in a special way in order
  308. # to save a lot of space. The special representation is only used when
  309. # you are under the following limits:
  310. list-max-ziplist-entries 512
  311. list-max-ziplist-value 64
  312. # Sets have a special encoding in just one case: when a set is composed
  313. # of just strings that happens to be integers in radix 10 in the range
  314. # of 64 bit signed integers.
  315. # The following configuration setting sets the limit in the size of the
  316. # set in order to use this special memory saving encoding.
  317. set-max-intset-entries 512
  318. # Similarly to hashes and lists, sorted sets are also specially encoded in
  319. # order to save a lot of space. This encoding is only used when the length and
  320. # elements of a sorted set are below the following limits:
  321. zset-max-ziplist-entries 128
  322. zset-max-ziplist-value 64
  323. # Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in
  324. # order to help rehashing the main Redis hash table (the one mapping top-level
  325. # keys to values). The hash table implementation redis uses (see dict.c)
  326. # performs a lazy rehashing: the more operation you run into an hash table
  327. # that is rhashing, the more rehashing "steps" are performed, so if the
  328. # server is idle the rehashing is never complete and some more memory is used
  329. # by the hash table.
  330. #
  331. # The default is to use this millisecond 10 times every second in order to
  332. # active rehashing the main dictionaries, freeing memory when possible.
  333. #
  334. # If unsure:
  335. # use "activerehashing no" if you have hard latency requirements and it is
  336. # not a good thing in your environment that Redis can reply form time to time
  337. # to queries with 2 milliseconds delay.
  338. #
  339. # use "activerehashing yes" if you don't have such hard requirements but
  340. # want to free memory asap when possible.
  341. activerehashing yes
  342. ################################## INCLUDES ###################################
  343. # Include one or more other config files here. This is useful if you
  344. # have a standard template that goes to all redis server but also need
  345. # to customize a few per-server settings. Include files can include
  346. # other files, so use this wisely.
  347. #
  348. # include /path/to/local.conf
  349. # include /path/to/other.conf