]> git.saurik.com Git - redis.git/blobdiff - redis.conf
Added a define to set the size threshold to enable the multi bulk parsing big objects...
[redis.git] / redis.conf
index fdabda06d31bc1bfc8ba9b7c157a1bc54bf78fd7..6663a4ec89da056b87ab9a8466b2cd6f59e7a08e 100644 (file)
@@ -37,7 +37,7 @@ port 6379
 # unixsocketperm 755
 
 # Close the connection after a client is idle for N seconds (0 to disable)
-timeout 300
+timeout 0
 
 # Set server verbosity to 'debug'
 # it can be one of:
@@ -144,6 +144,10 @@ slave-serve-stale-data yes
 # The following option sets a timeout for both Bulk transfer I/O timeout and
 # master data or ping response timeout. The default value is 60 seconds.
 #
+# It is important to make sure that this value is greater than the value
+# specified for repl-ping-slave-period otherwise a timeout will be detected
+# every time there is low traffic between the master and the slave.
+#
 # repl-timeout 60
 
 ################################## SECURITY ###################################