]> git.saurik.com Git - redis.git/commitdiff
I/O buffer length enlarged
authorantirez <antirez@gmail.com>
Wed, 2 Nov 2011 15:51:33 +0000 (16:51 +0100)
committerantirez <antirez@gmail.com>
Wed, 2 Nov 2011 15:51:33 +0000 (16:51 +0100)
src/redis.h

index 883db1f5f99116025c3a6ca8f783ec620935c3b1..b923f59e068b6dd40de273faaa63c1500dd0efd5 100644 (file)
@@ -40,7 +40,7 @@
 /* Static server configuration */
 #define REDIS_SERVERPORT        6379    /* TCP port */
 #define REDIS_MAXIDLETIME       (60*5)  /* default client timeout */
 /* Static server configuration */
 #define REDIS_SERVERPORT        6379    /* TCP port */
 #define REDIS_MAXIDLETIME       (60*5)  /* default client timeout */
-#define REDIS_IOBUF_LEN         1024
+#define REDIS_IOBUF_LEN         (1024*16)
 #define REDIS_LOADBUF_LEN       1024
 #define REDIS_DEFAULT_DBNUM     16
 #define REDIS_CONFIGLINE_MAX    1024
 #define REDIS_LOADBUF_LEN       1024
 #define REDIS_DEFAULT_DBNUM     16
 #define REDIS_CONFIGLINE_MAX    1024