Is Nagle Algorithm Enabled or Disabled with Play / Netty Platform?

I want to know if nagle algorithm is enabled or disabled with Play Framework / Netty. If it is enabled by default in Play Framework / Netty, how can I disable it.

+3


source to share


1 answer


I'm not sure which frameworks you mentioned, but Nagle's algorithm can be controlled (usually) with:

For this reason, TCP implementations typically provide an interface for applications to disable the Nagle algorithm. This is commonly referred to as the TCP_NODELAY parameter.



see Nagle Algorithm on Wikipedia

0


source







All Articles