AJM
AJM

Reputation: 32490

Caching in JAVA that copes in a weblogic clustered set up

I'm maintaining a Java web application that uses a java.util.Hashtable to cache values.

This works fine. However when deployed to weblogic under a clustered envrionment this means that I have cache refresh problems due to the fact that (I think) in this set up each node has its own instance of java.util.Hashtable

Is there a way to work around this in a clustered setup. If not can anyone suggest a more robust alternative?

Upvotes: 1

Views: 535

Answers (1)

mdrg
mdrg

Reputation: 3412

Each node will have its own hashmap, that's for sure.

For reliable caching on clustered environment, use some robust solution around, like JBoss Cache or ehcache.

Upvotes: 4

Related Questions