]> git.saurik.com Git - redis.git/commitdiff
set default client timeout to zero inside redis.h as well
authorantirez <antirez@gmail.com>
Fri, 11 Nov 2011 16:16:03 +0000 (17:16 +0100)
committerantirez <antirez@gmail.com>
Fri, 11 Nov 2011 16:18:35 +0000 (17:18 +0100)
src/redis.h

index d660cae91b3b17f6257321814cd6021d0e76da60..79ff3a6a0583eb5e8a941327afd497e3c8cfc634 100644 (file)
@@ -39,7 +39,7 @@
 
 /* Static server configuration */
 #define REDIS_SERVERPORT        6379    /* TCP port */
 
 /* Static server configuration */
 #define REDIS_SERVERPORT        6379    /* TCP port */
-#define REDIS_MAXIDLETIME       (60*5)  /* default client timeout */
+#define REDIS_MAXIDLETIME       0       /* default client timeout: infinite */
 #define REDIS_IOBUF_LEN         (1024*16)
 #define REDIS_LOADBUF_LEN       1024
 #define REDIS_DEFAULT_DBNUM     16
 #define REDIS_IOBUF_LEN         (1024*16)
 #define REDIS_LOADBUF_LEN       1024
 #define REDIS_DEFAULT_DBNUM     16