本文介绍了究竟是什么PLINQ?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
.NET 4.0框架中添加了PLINQ,作为LINQ的扩展.
- 这是什么?
- 它可以解决什么问题?
- 什么时候合适,什么时候不合适?
解决方案
这是并行LINQ.这是在多核/多处理器系统上并行运行LINQ查询的一种方法,以(希望)加快它们的速度.
MSDN杂志上有一篇很好的文章. /p>
有关当前的详细信息和计划,建议阅读与.NET Team Blog并行编程的文章.他们是实施并行扩展(包括PLINQ)的团队.
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?
解决方案
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.
这篇关于究竟是什么PLINQ?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!