summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2013-07-10 22:39:31 -0700
committerPieter Noordhuis <pcnoordhuis@gmail.com>2013-07-10 22:39:31 -0700
commitafc462d35d6940f77db843f7981377b5d0d75c89 (patch)
treeed80568bd56e2169fda57d12a2489f5caadae7f3 /README.md
parentf9ce2111bb4657639b00343311b980a0b6eda1d1 (diff)
Add note about multi bulk nesting limit (fixes #143)
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index ec3d368..45b2eb9 100644
--- a/README.md
+++ b/README.md
@@ -339,6 +339,9 @@ and a reply object (as described above) via `void **reply`. The returned status
can be either `REDIS_OK` or `REDIS_ERR`, where the latter means something went
wrong (either a protocol error, or an out of memory error).
+The parser limits the level of nesting for multi bulk payloads to 7. If the
+multi bulk nesting level is higher than this, the parser returns an error.
+
### Customizing replies
The function `redisReaderGetReply` creates `redisReply` and makes the function