When to use asynchronous operations in asio - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T10:42:29Zhttp://stackoverflow.com/feeds/question/717370http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/717370/when-to-use-asynchronous-operations-in-asio3When to use asynchronous operations in asioDanielSwe2009-04-04T16:40:14Z2009-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#7173812Answer by dirkgently for When to use asynchronous operations in asiodirkgently2009-04-04T16:45:48Z2009-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#7173901Answer by Arkain for When to use asynchronous operations in asioArkain2009-04-04T16:51:56Z2009-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>