I'm working with a TreeSet to store some information, so that it is sorted according to some order.
When the TreeSet becomes very large (>1GB), I want to save the smallest elements in the TreeSet to a file, to free some RAM. Then later, when there is more free RAM, I want to be able to reload these elements into memory to process them.
My question is: is there some efficient way of storing part of a TreeSet to file and restoring them into memory later?
Note that when I reload the elements into memory, it could be part of a new TreeSet or into the same TreeSet.
Thanks for any idea about how to do this!