What is Parallel LINQ?

Parallel LINQ (PLINQ) is a parallel implementation of LINQ to Objects. PLINQ implements the full set of LINQ standard query operators as extension methods for the IParallelEnumerable interface and has additional operators for parallel operations. PLINQ combines the simplicity and readability of LINQ syntax with the power of parallel programming. Just like code that targets the Task Parallel Library, PLINQ queries scale in the degree of concurrency based on the capabilities of the host computer.

In many scenarios, PLINQ can significantly increase the speed of LINQ to Objects queries by using all available cores on the host computer more efficiently. This increased performance brings high performance computing power onto the desktop.

Learn more about Parallel Programming and PLINQ:

  1. http://msdn.microsoft.com/en-us/library/dd460693(VS.100).aspx
  2. Parallel Extension in .Net
  3. Parallel Extension to LINQ