The .NET 4.5 async/await Commands in Promise and Practice

Posted on Simple Talk See other posts from Simple Talk
Published on Mon, 28 Jul 2014 00:00:00 GMT Indexed on 2014/08/18 16:40 UTC
Read the original article Hit count: 280

Filed under:

The .NET 4.5 async/await feature provides an opportunity for improving the scalability and performance of applications, particularly where tasks are more effectively done in parallel. The question is: do the scalability gains come at a cost of slowing individual methods? In this article Jon Smith investigates this issue by conducting a side-by-side evaluation of the standard synchronous methods and the new async methods in real applications.

© Simple Talk or respective owner

Related posts about .NET Framework