user84592
user84592

Reputation: 4882

clustered hash map

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

Answers (2)

Sachin Sabbarwal
Sachin Sabbarwal

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

dbf
dbf

Reputation: 6499

Have a look on Hazelcast ( http://www.hazelcast.com/ ). It has distributed maps and it is free and OS.

Upvotes: 1

Related Questions