Scalability of Boost.Asio

Posted by samm on Stack Overflow See other posts from Stack Overflow or by samm
Published on 2010-06-11T18:45:33Z Indexed on 2010/06/11 18:53 UTC
Read the original article Hit count: 167

Filed under:
|
|
|

I'm curious how far others have pushed Boost.Asio in terms of scalability. I am writing an application that may use close to 1000 socket objects, a handful of acceptor objects, and many thousand timer objects. I've configured it such that there's a thread pool invoking io_service::run and use strands in the appropriate places to ensure my handlers do not stomp on each other.

My platform is Red Hat Enterprise Linux with Boost 1.39, though I'm not opposed to upgrading to a more recent version of boost.

© Stack Overflow or respective owner

Related posts about c++

Related posts about linux