寻找一个轻量级的 java 兼容的内存键值存储
Berkeley DB 可能是最好的选择,但由于许可问题,我无法使用它.
Berkeley DB would be the best choice probably but I can't use it due to licensing issues.
还有其他选择吗?
推荐答案
你可以试试Hazelcast.只需将 hazelcast.jar 添加到您的类路径中.然后开始编码
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.
相关文章