I\'m looking for an on-disk implementation of java.util.Map
. Nothing too fancy, just something that I can point at a directory or file and have it store its co
If you are looking for key-object
based structures to persist data then NoSQL databases are a very good choice. You'll find that some of them such MongoDB or Redis scale and perform for big datasets and apart from hash based look ups they provide interesting query and transactional features.
In essence these types of systems are a Map implementation. And it shouldn't be too complicated to implement your own adapter that implements java.util.Map
to bridge them.