Top "Second-level-cache" questions

Second-level-cache, as the name implies, is a layer of cache that lives between a "primary" cache and a data service/store (relational database, in most cases) to optimize read operations on the service/store.

When overFlowToDisk gets activated in EHCACHE?

I have some questions on "overflowToDisk" attribute of element? 1) I read at this URL that : overflowToDisk sets whether element can …

caching ehcache second-level-cache
Hibernate L2 cache. Read-write or transactional cache concurrency strategy on cluster?

I’m trying to figure out which cache concurrency strategy should I use for my application (for entity updates, in …

java hibernate caching cluster-computing second-level-cache
Removing objects from NHibernate second level cache

I just started thinking about using the NHibernate second level cache in one of my apps. I would probably use …

nhibernate caching second-level-cache isession
Caching with Hibernate + Spring - some Questions

I'm working on developing a web application with Spring 3 and Hibernate 3.6. At the moment I try to understand how Caching …

hibernate spring caching ehcache second-level-cache
Working example of Hibernate 3.6.2 2nd level caching with JPA2?

The title obviously states it : I can't make the second-level cache work for JPA2/Hibernate 3.6.3. I've been trying many a …

hibernate jpa-2.0 ehcache second-level-cache
How I can disable the second-level cache of some certain entities in Hibernate without changing annotations

I'm using Hibernate second level cache in my application, for certain business reason I can't change the entity annotation any …

java hibernate annotations second-level-cache
Second level cache vs query cache vs collection cache?

As per my understanding, Second level cache will be used when the objects are loaded using their primary key. This …

java hibernate second-level-cache
How to know/log whether Hibernate 2nd-level cache was used or not for a query?

Currently, in order to check if the Hibernate 2nd-level cache was used for a Database query, I check my SQL …

hibernate logging orm grails second-level-cache
How hibernate ensures second level cache is updated with latest data in database

I have read that using hibernate's second level cache, it can improve applications performance by having less database hits for …

java hibernate second-level-cache
A soft-locked cache entry was expired by the underlying Ehcache

Hibernate 3.3.x, ehcache 2.2.x The following error occurs, when I try to publish a lots of users in a single …

hibernate caching jpa ehcache second-level-cache