I need an implementation of java.util.Map
that can be shared between different JVMs on different hosts. All the hosts (and thereby the JVMs) have access to the same shared filesystem, so I need something like this:
Map<String,String> sharedMap = new SharedMapInFile("/shared/mymap.map");
I have taken a look at MapDB (http://www.mapdb.org/), but there is no support for sharing between different JVMs (see: https://groups.google.com/forum/#!topic/mapdb/VKVy84MZJko).
Any ideas? TIA!