-
Notifications
You must be signed in to change notification settings - Fork 334
Pipelining is very slow #464
Comments
Test file
Before patching:
After patching:
The problem Fix |
I am not seeing this in my environment. What I see is that the entire pipeline is a single aioredis 1.1.0, Python 3.7, uvloop 0.11.2 here. Ah, I see, disabling uvloop, vanilla asyncio, I see the multiple sendto calls in strace. |
Please check this in master. |
It seems each operation leads to separate
sendto
syscall. Correct me if I wrong but the whole idea behind pipelining is to pack multiple operations into one network send.The text was updated successfully, but these errors were encountered: