Wednesday, September 5, 2012

Task Parallel Library (TPL) in .NET 3.5


What is TPL ?



The Task Parallel Library (TPL) is a set of public types and APIs in the System.Threading1 and System.Threading.Tasks2 namespaces in the .NET Framework version 4. The purpose of the TPL is to make developers more productive by simplifying the process of adding parallelism and concurrency to
applications. The TPL scales the degree of concurrency dynamically to most efficiently use all the processors that are available. In addition, the TPL handles the partitioning of the work, the scheduling of threads on the ThreadPool3, cancellation support, state management, and other low-level details. By using TPL, you can maximize the performance of your code while focusing on the work that your program is designed to accomplish.

Starting with the .NET Framework 4, the TPL is the preferred way to write multithreaded and parallel code. However, not all code is suitable for parallelization; for example, if a loop performs only a small amount of work on each iteration, or it doesn't run for many iterations, then the overhead of
parallelization can cause the code to run more slowly. Furthermore, parallelization like any multithreaded code adds complexity to your program execution. Although the TPL simplifies multithreaded scenarios, we recommend that you have a basic understanding of threading concepts, for example, locks, deadlocks, and race conditions, so that you can use the TPL effectively. 

For more information about basic parallel computing concepts, see the Parallel Computer Developer Center4 on MSDN. [http://msdn.microsoft.com/en-us/library/dd460717.aspx]

Task Parallel Library for .NET 3.5
To install Task Parallel Library for .NET 3.5, run the following command in the Package Manager Console
and Run
PM> Install-Package TaskParallelLibrary