聚集哈希图
我有一个在集群硬件中运行的 Java 应用程序。我使用 Hashmap 作为缓存。我也希望缓存能够集群。有没有一些开源java项目可以在两台连接的机器上同步Hashmap?
I have a Java application running in clustered hardware. I use Hashmap as cache. I want cache to be clustered also. Are there some open source java project to synchronize Hashmap in two connected machine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 Hazelcast ( http://www.hazelcast.com/ )。它有分布式地图,并且是免费的和操作系统。
Have a look on Hazelcast ( http://www.hazelcast.com/ ). It has distributed maps and it is free and OS.
尝试使用 Ehcache,它是开源的,并且也有一些许可证。
此外,您可以尝试使用 terracotta 的 Toolkit,它提供了 clustered DS,如 map、set、sortedmap、sortedset 等。有关更多信息,请访问 Terracotta 的网站。
Try using Ehcache, it's available as Open source and with some license also.
Besides you can try using Toolkit from terracotta, which provides clustered DS like map,set,sortedmap,sortedset etc. For more info goto Terracotta's website.