I have a very simple server/client performance test using boost::asio on Windows and it seems to be performing really poorly. I\'m hoping that I\'m just using the library incor
You must turn off the Nagle algorithm. Call:
m_socket.set_option(tcp::no_delay(true));
Where appropriate for your code.