Hi, simple question - and hopefully a simple answer :)
Imagine I have an ArrayCollection searchResult which is used to display results returned from a fill() method. This fill() method gets invoked with different additional arguments (the search query, additional filter settinsg etc.). What happens to the items in the ArrayCollection if I call fill() a second time and pass in an ArrayCollection that already is filled with different items? 1) they'll be released and removed from the DataStore automatically. 2) they won't be released - so over time the DataStore fills up with "old" search result items. I suspect 2) happens, right? In this case it seems to be a best practice to release all items in an ArrayCollection that is frequently filled with different item sets, right? Dirk. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

