Jonas Haag
Jonas Haag
It should be relatively easy to switch to a library like https://github.com/google/highway
Would be nice if this was added to the docs!
Yeah why not, PR welcome
Thank you so much! Indeed I think it is built with sChannel, I can look it up on conda-forge or just try it out.
``` curl version : libcurl/8.1.2-DEV Schannel zlib/1.2.13 ```
Interesting. In the 2 requests vs. 3 requests case, can you please print for each request: - Client side: - Request ID generated by client and sent via URL or...
Interesting. It seems like the event loop of the server with the two requests prioritizes work on the new connection to closing the old one. Not sure why that is...
Deleted some wrong insights that weren't reproducible. Behavior seems to be flaky.
OK, it seems like the insight with `Content-Length` is actually reproducible: If your application sets `Content-Length` correctly, the behavior seems to go away.
OK I think I understood the problem now. If you don't set `Content-Length` but use `Connection: keep-alive` (default with HTTP 1.1) then you'll end up with `Transfer-Encoding: chunked`. Which means...