Is there a implementation of List as a local storage instead of main memory resident in java. Basically my application have to store a huge amount of data and i don't want to use the memory resident list implementations.
Asked
Active
Viewed 153 times
1
-
possible duplicate of [Are they any decent on-disk implementations of Java's Map?](http://stackoverflow.com/questions/4815633/are-they-any-decent-on-disk-implementations-of-javas-map) – Jim Garrison Feb 08 '12 at 19:03
-
I dont see a List implementation there – Vineeth Mohan Feb 08 '12 at 19:09
-
2`List
` is essentially a `Map – 9000 Feb 08 '12 at 19:24` :) No, really, get the simplest key-value 'database' you can. -
So what happens when i remove a element in between ?? – Vineeth Mohan Feb 08 '12 at 20:30