From 11f0a23caf48fc541a0c7921e2e9d2c17be62009 Mon Sep 17 00:00:00 2001 From: antirez Date: Sun, 19 Feb 2012 20:33:59 +0100 Subject: [PATCH] Applied a few modifications to hiredis to tune it for speed (redis-benchmark) and ability to read more deeply nested replies (redis-cli). --- deps/hiredis/hiredis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/hiredis/hiredis.h b/deps/hiredis/hiredis.h index 83583754..a73f50e9 100644 --- a/deps/hiredis/hiredis.h +++ b/deps/hiredis/hiredis.h @@ -123,7 +123,7 @@ typedef struct redisReader { size_t pos; /* Buffer cursor */ size_t len; /* Buffer length */ - redisReadTask rstack[4]; + redisReadTask rstack[9]; int ridx; /* Index of current read task */ void *reply; /* Temporary reply pointer */