8000
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
TCP_NODELAY disables the nagle-algorithm and delayed ACK, which removes a delay of 200ms for the first message to reduce ACKS.
Nagle-algorithm is important for high-latency / low-bandwith network-connections, but now most have fiber-connection or better.
Believe most people will not notice the overhead of extra ACKS, but will notice the 200ms delay.
Socket.NoDelay should be assigned to true by default, but should of course be configurable.
true
The feature should also be implemented for NLog v5.5 but with default value false.
false
The text was updated successfully, but these errors were encountered:
Bonus task is also to set SendTimeoutSeconds default-value to 100 secs for NLog v6.
SendTimeoutSeconds
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
TCP_NODELAY disables the nagle-algorithm and delayed ACK, which removes a delay of 200ms for the first message to reduce ACKS.
Nagle-algorithm is important for high-latency / low-bandwith network-connections, but now most have fiber-connection or better.
Believe most people will not notice the overhead of extra ACKS, but will notice the 200ms delay.
Socket.NoDelay should be assigned to
true
by default, but should of course be configurable.The feature should also be implemented for NLog v5.5 but with default value
false
.The text was updated successfully, but these errors were encountered: