This content has been marked as final.
Show 2 replies
-
1. Re: Distributed cache implementation
alu1344 Oct 21, 2003 7:53 AM (in response to msuroo)Mount hibernate on the server side, with jcs mounted in cluster (synchronized via jms).
http://www.hibernate.org
This is the easiest way I know to mount what you need. Cache isn't on stateful session beans nor in the clients, but in the server data cache. JCS can take care of that.
Better than that, investigate the cache forum here to know how can that be achieved.
Over all, check the hibernate docos about caching. Read a lot. And good luck. -
2. Re: Distributed cache implementation
nraghuram Oct 22, 2003 4:30 AM (in response to msuroo)have u looked at the ReplicatedHashtable in JGroups. You could store your objects in the ReplicatedHashtable. Any changes will get propagated across the cluster.
www.jgroups.org.
raghu