Sean

Results 58 comments of Sean

Hey folks - This is precisely why I opened https://github.com/redis/redis-py/issues/2039. We need to move our protocol implementation for serialization and deserialization away from the IO boundary so that we can...

This will also make testing protocols far simpler!

> One question, how will this make typing behave? - @WisdomPill - Since the IO-based client becomes a wrapper over the sans-IO implementation, you can strongly type the sans-IO implementation,...

Hello - I'm attempting to use this library with FactoryBoy, and afaict, I've set everything up correctly, but I'm still seeing commits persist beyond each test lifecycle. This is what...

Hey @alecov - The reason it _sometimes_ results in a subscription and sometimes _not_ is that you aren't guaranteeing an order of operations in the event loop. By creating a...

Hi @Veritaris - Can you try without the cached-property? IIRC, cached-property caches the result of the first function call. In this case, your function returns a coroutine, which you then...

@argaen can you try out the implementation in #891? We've re-implemented the multi-bulk protocol to more closely match redis-py's implementation and I believe it may address this issue.

#891 is now merged to master. @argaen would you be willing to test this issue against the latest master?

I haven't seen this issue myself, but it may be related to your environment. Can you provide your Python version, library version, and OS? Additionally, a full traceback would be...

@jmcgrath207, @ibigpapa @zillionare - Can you please pull in the latest master and test with that client? Note, the library is now a port of redis-py and has the same...