summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2012-02-19 20:33:59 +0100
committerantirez <antirez@gmail.com>2012-02-21 10:11:47 +0100
commit11f0a23caf48fc541a0c7921e2e9d2c17be62009 (patch)
tree1d41900a39e958029dd11ae18ed9f640c7ff1238
parent6887744245213af24499600eee99988b633ef526 (diff)
downloadredis-11f0a23caf48fc541a0c7921e2e9d2c17be62009.tar.gz
Applied a few modifications to hiredis to tune it for speed (redis-benchmark) and ability to read more deeply nested replies (redis-cli).
-rw-r--r--deps/hiredis/hiredis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/hiredis/hiredis.h b/deps/hiredis/hiredis.h
index 835837548..a73f50e95 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 */