tcp_tw_reuse vs tcp_tw_recycle : Which to use (or both)?
According to Linux documentation, you should use the TCP_TW_REUSE flag to allow reusing sockets in TIME_WAIT state for new connections. It seems to be a good option when dealing with a web server that have to handle many short TCP connections left in a TIME_WAIT state. As described here, The TCP_TW_RECYCLE could cause some problems … Read more