I have the following use case:
- a list containing objects with various properties - e.g name,type,date
- the list can contain a lot of elements(50k - 200k)
I wanted to ask what would be the best list implementation for this situation given the fact that I need to do operations on the list such as
- order - e.g by type(alphabetically)
- filtering - e.g. by date
- no inserts
- sublists - similar to paging.
Thanks.