From: antirez Date: Wed, 2 Nov 2011 15:51:33 +0000 (+0100) Subject: I/O buffer length enlarged X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/dd5fbedf7bb9ac02d14aa9ecaeafb47e48b9a587?ds=inline I/O buffer length enlarged --- diff --git a/src/redis.h b/src/redis.h index 883db1f5..b923f59e 100644 --- a/src/redis.h +++ b/src/redis.h @@ -40,7 +40,7 @@ /* 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