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 contents there, in some way it chooses. Does anyone know of such a thing?
|
|
|||
|
|
You could have a look at the Disk-Backed-map project.
|
|||
|
|
|
If you are looking for In essence these types of systems are a Map implementation. And it shouldn't be too complicated to implement your own adapter that implements |
||||
|
|
|
You could use a simple EHCache implementation? The nice thing about EHCache being that it can be very simple to implement :-) I take it you've ruled out serialising / deserialising an actual Map instance? |
|||||||
|
|
This seems like a relatively new open source solution to the problem, I've used it, and like it so far |
|||
|
|