aiohttp icon indicating copy to clipboard operation
aiohttp copied to clipboard

Allow a client to write a request to the socket separately from waiting for a response

Open robsmith11 opened this issue 4 years ago • 1 comments

I often want to make a latency sensitive request in the background, but if I use create_task, it will not write the request to the socket immediately. If the writing were separate from reading from the socket, I could block on writing and then use create_task for just the reading.

robsmith11 avatar Mar 28 '21 13:03 robsmith11

Sorry, I don't follow what is the proposal?

asvetlov avatar Oct 30 '21 14:10 asvetlov