Reputation: 4882
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?
Upvotes: 1
Views: 842
Reputation: 143
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.
Upvotes: 0
Reputation: 6499
Have a look on Hazelcast ( http://www.hazelcast.com/ ). It has distributed maps and it is free and OS.
Upvotes: 1