Is it OK to try to use Plinq in all Linq queries?

Posted by Tony_Henrich on Stack Overflow See other posts from Stack Overflow or by Tony_Henrich
Published on 2010-05-23T21:55:05Z Indexed on 2010/05/23 22:01 UTC
Read the original article Hit count: 180

Filed under:
|

I read that PLinq will automatically use non parallel Linq if it finds PLinq to be more expensive. So I figured then why not use PLinq for everything (when possible) and let the runtime decide which one to use.

The apps will be deployed to multicore servers and I am OK to develop a little more code to deal with parallelism.

What are the pitfalls of using plinq as a default?

© Stack Overflow or respective owner

Related posts about LINQ

Related posts about PLINQ