diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2013-07-10 22:39:31 -0700 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2013-07-10 22:39:31 -0700 |
commit | afc462d35d6940f77db843f7981377b5d0d75c89 (patch) | |
tree | ed80568bd56e2169fda57d12a2489f5caadae7f3 | |
parent | f9ce2111bb4657639b00343311b980a0b6eda1d1 (diff) |
Add note about multi bulk nesting limit (fixes #143)
-rw-r--r-- | README.md | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |