top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is PLINQ?

+5 votes
218 views
What is PLINQ?
posted Dec 24, 2014 by Merry

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes
 
Best answer

This is Parallel LINQ. It's a way to run LINQ queries in parallel on multi-core/multi-processor systems, in order to (hopefully) speed them up.

Parallel LINQ (PLINQ) is a parallel implementation of the LINQ pattern. A PLINQ query in many ways resembles a non-parallel LINQ to Objects query.

For more details refer:MSDN Magazine

answer Dec 24, 2014 by Manikandan J
...