>Can anyone suggest a (preferably open-source) library that would allow
>for disk-based collections (kind of an application's own VM)?
see http://mindprod.com/jgloss/pod.html

Signature
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
> Can anyone suggest a (preferably open-source) library that would allow
> for disk-based collections (kind of an application's own VM)?
What you want is a b-tree implementation in Java. Any decent Java-based Database
should contain one such. Here's two that definitely do (the second may be even
more immediately useful to you):
http://www.quadcap.com/
http://www.coyotegulch.com/jisp/
Roedy Green - 17 Jun 2004 15:44 GMT
>What you want is a b-tree implementation in Java. Any decent Java-based Database
>should contain one such. Here's two that definitely do (the second may be even
>more immediately useful to you):
also see http://mindprod.com/jgloss/hermitcrab.html

Signature
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
GG - 02 Jul 2004 06:24 GMT
> http://www.quadcap.com/
> http://www.coyotegulch.com/jisp/
Thanks! JISP accomplishes what I wanted at the moment, but quadcap's
solution is also interesting...