From: antirez <antirez@gmail.com>
Date: Tue, 9 Jun 2009 22:03:53 +0000 (+0200)
Subject: max inline request raised again to 1024*1024*256 bytes
X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/cd19463854027eb7e378bcd0ea8e072e7d17f4d0

max inline request raised again to 1024*1024*256 bytes
---

diff --git a/redis.c b/redis.c
index ac982696..17100a8d 100644
--- a/redis.c
+++ b/redis.c
@@ -82,7 +82,7 @@
 #define REDIS_MAX_SYNC_TIME     60      /* Slave can't take more to sync */
 #define REDIS_EXPIRELOOKUPS_PER_CRON    100 /* try to expire 100 keys/second */
 #define REDIS_MAX_WRITE_PER_EVENT (1024*64)
-#define REDIS_REQUEST_MAX_SIZE  (1024*1024) /* max bytes in inline command */
+#define REDIS_REQUEST_MAX_SIZE  (1024*1024*256) /* max bytes in inline command */
 
 /* Hash table parameters */
 #define REDIS_HT_MINFILL        10      /* Minimal hash table fill 10% */