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
{{ message }}
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
Disables the Nagle algorithm. By default TCP connections use the Nagle algorithm, they buffer data before sending it off. Setting true for noDelay will immediately fire off data each time socket.write() is called. noDelay defaults to true.
"By default TCP connections use the Nagle algorithm" … "noDelay defaults to true" — these say opposite things. Is data buffered by default (Nagle's algorithm) or is the underlying TCP_NODELAY overrided really defaulting to "on"?