Guava - disk backed large collections -
do guava's collection implementations flow data disk beyond size?
i didn't find simple reference on this, though sounds natural/simple way of supporting large datasets...
we can use other libraries map db of course...or more comprehensive setups voldemort...but wondering why guava doesn't have it...
is architecture point of view, if 1 needs use such large dataset, better off splitting out data separate data store instance instead of putting in same jvm...?
nope; guava sticks on-heap collections, ones in java.util. on-disk collections more or less out of scope guava.
Comments
Post a Comment