[flexcoders] Filtering Best Practices Question

2007-05-16 Thread Nate Pearson
What's the best practice when you have to compare two large lists? My main list is 9000 objects long. I have to compare this to another list which might have 4000 objects in it. Right now I'm doing it the WRONG way. For each row in the Main list i iterate through every item in the 4000

Re: [flexcoders] Filtering Best Practices Question

2007-05-16 Thread Bjorn Schultheiss
With a complex objects list this is difficult. I would suggest doing it server side. If the lists contained numerical or string items you could rely on sorting to make your iteration process shorter. Bjorn On 17/05/2007, at 4:36 AM, Nate Pearson wrote: What's the best practice when you