]> git.saurik.com Git - redis.git/blobdiff - redis.conf
Merge pull request #77 from Poincare/patch-1
[redis.git] / redis.conf
index 1551a13a9768176099dc025064f60d38270255d3..9e9eac5f8f97808833d74ab7698bd5f90f77b18d 100644 (file)
@@ -312,6 +312,13 @@ no-appendfsync-on-rewrite no
 auto-aof-rewrite-percentage 100
 auto-aof-rewrite-min-size 64mb
 
+################################ LUA SCRIPTING  ###############################
+
+# Max execution time of a Lua script in milliseconds.
+# This prevents that a programming error generating an infinite loop will block
+# your server forever. Set it to 0 or a negative value for unlimited execution.
+lua-time-limit 60000
+
 ################################## SLOW LOG ###################################
 
 # The Redis Slow Log is a system to log queries that exceeded a specified
@@ -334,7 +341,7 @@ slowlog-log-slower-than 10000
 
 # There is no limit to this length. Just be aware that it will consume memory.
 # You can reclaim memory used by the slow log with SLOWLOG RESET.
-slowlog-log-len 1024
+slowlog-max-len 1024
 
 ############################### ADVANCED CONFIG ###############################