chrisdinn / brando

A Redis client written with Akka's IO package
Other
107 stars 24 forks source link

ReplyParser should cache parse progress on failure #47

Closed chrisdinn closed 9 years ago

chrisdinn commented 9 years ago

ReplyParser re-parses the entire reply bytestring every time it gets new bytes from Redis. If you get lots of small responses from Redis (which happens, especially with commands like SMEMBERS) it can be surprisingly slow.

damienlevin commented 9 years ago

Fixed by #48