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.
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.