From beb4bacce6a70ec6d789d719c70d280115c0762d Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 2 Nov 2011 16:51:33 +0100 Subject: [PATCH] I/O buffer length enlarged --- src/redis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis.h b/src/redis.h index e37346e1..9158c507 100644 --- a/src/redis.h +++ b/src/redis.h @@ -38,7 +38,7 @@ /* Static server configuration */ #define REDIS_SERVERPORT 6379 /* TCP port */ #define REDIS_MAXIDLETIME 0 /* default client timeout: infinite */ -#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