vote up 0 vote down star
1

I remember seeing a link about it here where some people claimed it's 1000 times faster than the BCL Linq.

Anyone used it here? Is it true?

Also is Microsoft's PLinq gonna be along the same lines? Because it seemed to me like the above mentioned Linq was automatically parallel or something.

And if that's the case, why isn't Microsoft doing the same with the standard Linq?

flag

56% accept rate
Linq is a language extension, but it comes in many flavours. Are you referring to LinqToObject, LinqToSql, LinqToXml etc. ? – Dan Diplo Nov 6 at 20:54
Linq to Objects I guess. I don't remember the 3rd party linq to be specific or general like MS Linq. – Joan Venge Nov 6 at 20:56

2 Answers

vote up 3 vote down check

It has nothing to do with parallel anything, but Indexed LINQ lets you add indexes to LINQ-to-Object queries, and claims some pretty dramatic speed-ups in certain cases. Could you be thinking of that?

link|flag
Thanks, that was it. They claim over 1000x, wow. :) – Joan Venge Nov 6 at 21:22
vote up 1 vote down

One thing I know is that the SqlDataReader is significantly faster than LINQ to SQL.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.