I just want know if a "FindAll" will be faster than a "Where" extentionMethod and why?
Example :
myList.FindAll(item=> item.category == 5);
or
myList.Where(item=> item.category == 5);
Which is better ?
|
2
|
I just want know if a "FindAll" will be faster than a "Where" extentionMethod and why? Example :
or
Which is better ?
|
|||
|
|
|
Well, I'd therefore expect Basically, Just to react a bit more to Matthew's answer, I don't think he's tested it quite thoroughly enough. His predicate happens to pick half the items. Here's a short but complete program which tests the same list but with three different predicates - one picks no items, one picks all the items, and one picks half of them. In each case I run the test fifty times to get longer timing. I'm using Results:
(Compiled with /o+ /debug- and run from the command line, .NET 3.5.) Code:
|
||||||||||||||
|
|
|
Well, at least you can try to measure it. The static But if you include the complete iteration of the results you get, things can be a bit different. I'm pretty sure the |
||||
|
|
|
I'm sure you'll not see significant difference. |
||
|
|
|
|
I can give some clue, but not sure which one faster. FindAll() is executed right away. Where() is defferred executed. |
||
|
|
|
|
How about we test instead of guess? Shame to see the wrong answer get out.
Edit: Even if I turn the above code from
... to ...
I get these results
Edit 2.0... If you want a list of the subset of the current list the fastest method if the FindAll(). The reason for this is simple. The FindAll instance method uses the indexer on the current List instead of the enumerator state machine. The Where() extension method is an external call to a different class that uses the enumerator. If you step from each node in the list to the next node you will have to call the MoveNext() method under the covers. As you can see from the above examples it is even faster to use the index entries to create a new list (that is pointing to the original items, so memory bloat will be minimal) to even just get a count of the filtered items. Now if you are going to early abort from the Enumerator the Where() method could be faster. Of course if you move the early abort logic to the predicate of the FindAll() method you will again be using the indexer instead of the enumerator. Now there are other reasons to use the Where() statement (such as the other linq methods, foreach blocks and many more) but the question was is the FindAll() faster than Where(). And unless you don't execute the Where() the answer seems to be yes. (When comparing apples to apples) I am not say don't use LINQ or the .Where() method. They make for code that is much simpler to read. The question was about performance and not about how easy you can read and understand the code. By fast the fastest way to do this work would be to use a for block stepping each index and doing any logic as you want (even early exits). The reason LINQ is so great is becasue of the complex expression trees and transformation you can get with them. But using the iterator from the .Where() method has to go though tons of code to find it's way to a in memory statemachine that is just getting the next index out of the List. It should also be noted that this .FindAll() method is only useful on objects that implmented it (such as Array and List.) Yet more...
|
||||||||||||||||
|