Exactly what is PLINQ?

后端 未结 5 588
遇见更好的自我
遇见更好的自我 2020-12-24 01:23

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 n
5条回答
  •  庸人自扰
    2020-12-24 01:55

    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.

提交回复
热议问题