Looking for a lightweight java-compatible in-memory key-value store

Roman picture Roman · Apr 4, 2010 · Viewed 12.3k times · Source

Berkeley DB would be the best choice probably but I can't use it due to licensing issues.

Are there any alternatives?

Answer

Fuad Malikov picture Fuad Malikov · Aug 13, 2010

You can try Hazelcast. Just add hazelcast.jar to your classpath. And start coding

java.util.Map map = Hazelcast.getMap("myMap");

You'll get an in-memory, distributed, dynamically scalable data grid which performs super fast.