aiohttp
aiohttp copied to clipboard
Allow a client to write a request to the socket separately from waiting for a response
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.
Sorry, I don't follow what is the proposal?