views:

241

answers:

3

I'm searching a collection framework designed for huge datasets in Java that behaves transparently, like STXXL does for C++.

It should transparently swap to disk, but in a much more efficient manner than plain OS-based VM swapping. A StringBuffer/String drop-in replacement would be a big plus.

+2  A: 

These fill needs only partially:

Oracle Berkeley DB Java Edition database backed collections: http://www.oracle.com/technology/documentation/berkeley-db/je/java/index.html

Joafip persistent collections: http://joafip.sourceforge.net/javadoc/net/sf/joafip/java/util/package-summary.html

Mikko Maunu
+1: Didn't know these. I'll check them, thx
Steve Schnepp
A: 

Why not use a proper database?

alamar
The keyword here is "transparently". It can be database-backed, but I do search a drop-in.
Steve Schnepp
+1  A: 

Terracotta

ykaganovich