summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2015-09-28 15:34:29 -0700
committerAndy McCurdy <andy@andymccurdy.com>2015-09-28 15:34:29 -0700
commited2a079cc3ff7db82e197307d388ca9c96cb092e (patch)
tree2fec24357bdcf1558feb0fcfd0a0beded958d6a3 /CHANGES
parentf6338499b2d390dcb25c8835f9418f63794be2a5 (diff)
downloadredis-py-ed2a079cc3ff7db82e197307d388ca9c96cb092e.tar.gz
removed the proactive check in HiredisParser for a line ending
it turns out just calling into hiredis to test this is faster than doing string compare in Python. fixes #615 and #650.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index f7060b6..44c17df 100644
--- a/CHANGES
+++ b/CHANGES
@@ -15,6 +15,10 @@
to the master when the connection pool resets. Thanks
https://github.com/df3n5
* Better timeout support in Pubsub get_message. Thanks Andy Isaacson.
+ * Fixed a bug with the HiredisParser that would cause the parser to
+ get stuck in an endless loop if a specific number of bytes were
+ delivered from the socket. This fix also increases performance of
+ parsing large responses from the Redis server.
* 2.10.3
* Fixed a bug with the bytearray support introduced in 2.10.2. Thanks
Josh Owen.