My program need insert more than millions of record to the data container. I tried hashmap and treemap. Both will give me Heap space exception to me although I allow the JVM to use 2gb ram.
My program frequently gets specific data from the container which I think if it takes O(logn) time will be acceptable to me. So what container should I use? Or I need to implement one? How?
More Details: the key is String, like a global ID e.g "00011123459" sth like that. Then the key will map to a list of list i.e List<List<String>>
. My program readLine from the file, then change the line into list, then get the global id from the list, then put the list into corresponding list of list. The file has more than millions of line, that's why I believe the main reason is I create too much lists. However, I cannot add more memory to the machine.
From the javadoc.
So use a TreeMap and give Java more memory.