You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently http connections are opened as unbuffered, so each individual call to connectionWrite results in a packet on the wire (as I noticed looking at tcpdumps). Especially for RequestBodyStreamChunked this results in a lot of overhead per chunk. It seems like it would be safe and result in much better performance to simply switch the connection to block buffered and do an explicit flush after the entire request is sent.