server « Cache « JPA Q&A





1. What does a Terracotta server do when it is used as a backend for EHCache with Hibernate?    stackoverflow.com


My DAL is implemented with Hibernate and I want to use EHCache as its second level cache with its distributed capabilities (for scalability and HA).
Seeing as EHCache provides distributed caching only ...

2. Running multiple applications using hibernate with a single standalone EhCache server    stackoverflow.com

I have two app servers (in this case Tomcat but it needn't be this container) which are running the same application with a load balancer directing work to them. Behind these ...

3. Hibernate client/server    stackoverflow.com

I'm in need of some help here. I've been integrating hibernate in my application now, and i really love the way it works. I'm now trying to grasp the concept of ...

4. second level caching with clustered app servers    forum.hibernate.org

hi folks hibernate-3.0beta1.jar is it correct to create a no-op second level cache provider that never puts anything in the cache and that always says an object is not present. like this i do not have to get involved with replicating caches over a cluster of WebSphere AppServers? if i can't do this and i have to use a cluster-aware cache ...

5. How to bypass second level cache when cache server is down    forum.hibernate.org

Is there a way to configure hibernate to skip the second level cache when the cache server is not available? We are using memcache for the hibernate L2 cache. It works well when the memcache server is up and running. However, hibernate would stop working if it can't connect to memcache server. I am wondering if there is a way to ...