ADC Home > Reference Library > Technical Q&As > Carbon > Networking >
|
Q: My Open Transport TCP application exchanges a number of small packets of information, which may or may not generate a response from the other side. In some cases, I find that the application delays sending packets, and performance is terrible. How can I solve this problem? A: One possible reason for this behavior is
explained by the For some applications, this packetization may cause significant
delays. Setting the
This snippet relies on the In general, disabling the Nagle Algorithm is a bad idea because it decreases the efficiency with which you use the network. A better solution is for you to structure your application so that it sends all logically associated data in one chunk. You may find OT's ability to send non-contiguous data helpful in this case. |
|