We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
https://doc.rust-lang.org/std/net/struct.TcpStream.html#method.set_nodelay
This is basically a default for most modern http clients since it reduces latency of sending bytes.
I was going through the stream.rs file but I'm not sure how to implement it and make a pull request so I decided to open this issue sorry about that.
The text was updated successfully, but these errors were encountered:
Some references:
curl sets nodelay by default reqwest sets nodelay by default Go sets nodelay by default on all TCP connectiosn
I'm in favor of implementing. Let's build it on top of #389
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hi,
https://doc.rust-lang.org/std/net/struct.TcpStream.html#method.set_nodelay
This is basically a default for most modern http clients since it reduces latency of sending bytes.
I was going through the stream.rs file but I'm not sure how to implement it and make a pull request so I decided to open this issue sorry about that.
The text was updated successfully, but these errors were encountered: