Question / Help Disabling so called "TCP no delay" - is it useful for streaming?

You seem to be mixing up deferred acks and TCP_NODELAY. Disabling deferred acks (Leatrix tool) is useful in low bandwidth multiplayer games so the server can send its next packet sooner if the client has no response. TCP_NODELAY disables Nagle's algorithm and should not (and often cannot) be changed by a user since it's heavily application dependent.

Neither have any benefit in RTMP since the bandwidth is high enough not to result in deferred acks, and the protocol is not designed to operate without Nagle's algorithm to coalesce sends.
 
Back
Top