PLINQ was added in the .NET 4.0 Framework as an extension to LINQ.
- What is it?
- What problems does it solve?
- When is it appropriate and when not?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.
There is a good article on this in MSDN Magazine.
For current details and plans, I recommend reading articles on the Parallel Programming with .NET Team Blog. They are the team implementing the parallel extensions, including PLINQ.