vote up 1 vote down star

I stumbled across the WB on-disk B-tree library:

http://people.csail.mit.edu/jaffer/WB

It seems like it could be useful for my purposes (swapping data to disk during very large statistical calculations that do not fit in memory), but I was wondering how stable it is. Reading the manual, it seems worringly 'researchy' - there are sections labelled [NOT IMPLEMENTED] etc. But maybe the manual is just out-of-date.

So, is this library useable? Am I better off looking at Tokyo Cabinet, MemcacheDB, etc.?

By the way I am working in Java.

flag

60% accept rate

1 Answer

vote up 1 vote down

I have looked at the WB B-Tree Database, but SQLite might be a better fit. It handles extremely large datasets in a single file, and is a lightweight, fully-functional database.

http://www.sqlite.org/

Info on using SQLite with Java is here:

http://stackoverflow.com/questions/41233/java-and-sqlite

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.