When to use asynchronous operations in asio - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:42:29Z http://stackoverflow.com/feeds/question/717370 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/717370/when-to-use-asynchronous-operations-in-asio 3 When to use asynchronous operations in asio DanielSwe 2009-04-04T16:40:14Z 2009-04-04T16:51:56Z <p>When should I use asynchronous operations in boost::asio instead of synchronous operations in seperate threads?</p> http://stackoverflow.com/questions/717370/when-to-use-asynchronous-operations-in-asio/717381#717381 2 Answer by dirkgently for When to use asynchronous operations in asio dirkgently 2009-04-04T16:45:48Z 2009-04-04T16:45:48Z <p>Does the <a href="http://www.boost.org/doc/libs/1%5F37%5F0/doc/html/boost%5Fasio/overview/rationale.html" rel="nofollow">Rationale</a> section help?</p> <blockquote> <p>Most programs interact with the outside world in some way, whether it be via a file, a network, a serial cable, or the console. Sometimes, as is the case with networking, individual I/O operations can take a long time to complete. This poses particular challenges to application development.</p> <p>Boost.Asio provides the tools to manage these long running operations, without requiring programs to use concurrency models based on threads and explicit locking. </p> </blockquote> http://stackoverflow.com/questions/717370/when-to-use-asynchronous-operations-in-asio/717390#717390 1 Answer by Arkain for When to use asynchronous operations in asio Arkain 2009-04-04T16:51:56Z 2009-04-04T16:51:56Z <p>I would strongly urge you to use a asynchronous approach whenever possible. A asynchronous call doesn't necessarily create a thread, so by sticking with an asynchronous operation you may reduce the overhead that is associated with threads. In addition threads are usually harder to develop and maintain.</p> <p>Hope it helps. </p>