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. It is different from the primary cache in its lifespan (primary cache being limited to a ...

learn more… | top users | synonyms

2
votes
1answer
66 views

OptimisticConcurrencyException: Multiple EF based applications using shared AppFabric cache and same database

I am using a web application and a windows service on the same machine as Appfabric. Both applications reuse same DAL code (dll) which is EF (Entity Framework) Code-First based and accessing the same ...
0
votes
0answers
28 views

Hibernate disabling 2nd level cache

In hibernate SQL .. I did the following in the hibernate config xml file : <hibernate-configuration> <session-factory> <property name="hibernate.cache.provider_class"> ...
0
votes
0answers
61 views

Infinispan with Hibernate: Objects are not added to the cache or removed after an update

We currently have some problems with our Infinispan 2nd level cache. We've prepared two test cases: 1) Newly created objects are not put in the 2nd level Cache. We create a new object (TestEntity) in ...
0
votes
1answer
65 views

What is a bulk update in the context of JPQL queries and JPA persistence context?

The JPA 2.0 specification (JSR 317) says: The persistence context is not synchronized with the result of the bulk update or delete. Exactly what is a bulk update? In my view, there is [or rather ...
2
votes
0answers
52 views

Query Cache Hibernate loading entities

Can any one help me resolving this question. I am using Infinispan as second level cache and Hibernate as ORM. I have turned on both enityt and query cache. I have two queries, for example Q1 is ...
0
votes
1answer
43 views

enumerated values with hibernate and cache

I have the next problem: I have a "User" entity with a many to many relationship to "Roles". The thing is, the "Roles" are enumerated (there are always 5 of them) so fetching them whenever i fetch a ...
1
vote
1answer
102 views

Doctrine - Break query cache when entity is modified (second-level cache)

I'm using doctrine 2 without caching anything at the moment. I'd like to enable some caching system within Doctrine but it looks like you have to manage it manually everywhere: $memcache = new ...
0
votes
1answer
129 views

Hibernate cache for scalar queries

I have read this post. I cannot get whole objects as suggested in this post. I am getting MIN,MAX,Count values. So a new post. Below is what I want and what I have. My Spring app does not make any ...
2
votes
1answer
128 views

In what kind of situations will Nhibernate Second Level Cache improve performance?

The more I read about NHibernate L2 caching, the more it seems to me that you primarily benefit from it only in the following scenario: You are primarily querying by Id, and... You are primarily ...
0
votes
1answer
81 views

Hibernate natural Id and 2nd level cahce

I am trying to use Hibernate 4 with ehcache. My entities has several Id fields which are not primary keys in my DB. @Entity @Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE) @Table(name = ...
1
vote
1answer
150 views

NHibernate Second Level Cache with database change notification on desktop App

I am developing a WPF application using Nhibernate to communicate with a Posgree Database. The only caching provider that works on a desktop app is Bamboo Prevalence(Correct me if I am wrong), my ...
1
vote
2answers
138 views

Can we use JPA2 annotations to cache associations?

I'm now using the JPA2 @Cacheable annotation on my Entities, and all is working well. I now need to cache a ManyToOne association. In classic Hibernate, it was necessary to annotate the association ...
0
votes
0answers
94 views

Why am I not getting a hit in my second level cache?

I'm using Spring 3.1.1.RELEASE, Hibernate 4.1.5.Final, and JUnit 4.8.1. I want to test if my second-level cache is being properly used, but unsure if I'm doing it right. The following JUnit code ...
1
vote
3answers
435 views

How do I access Hibernate statistics from an entitymanager?

I'm using Spring 3.1.1.RELEASE, JUnit 4.8.1, and Hibernate 4.1.5.Final. I'm trying to test whether my second level cache is configured correctly, but am unsure of how to do it. I'm using the JPA ...
0
votes
1answer
245 views

Hibernate Collection cache : How to use?

I have two entities Book and Author. Book has a collection of authors. I am using second level cache to keep the Book entity with its Authors. When debugging I can see there is putForExternalRead is ...
0
votes
1answer
62 views

Ehcache store something forever

I use ehcache as second level cache and I want to use it to store simple text messages and locales (They are stored in the DB). But those messages will never change, so there is no need to refresh the ...
1
vote
1answer
94 views

NHibernate 2nd level cache does not invalidate entities map on the same table

I'm using NHibernate 3.2 with appfabric 1.1 for the 2nd level cache. I’ve 2 classes mapped on the same table. The first class AFullEntity (MonitorLayoutData in the sample), inherit a second class ...
0
votes
0answers
85 views

nhibernate memcache second-level cache multiple query cache regions, evictions

Does the NHibernate-MemCache second-level cache stack support multiple query cache regions? If so, can I evict one query cache region without it clearing out cached queries in another region? Some ...
1
vote
1answer
64 views

EFCachingProvider for EF 4.0 by J. Kowalski is not Invalidating cached data

I have a problem with EFCachingProvider. It caches what I want but when SaveChanges is called on the context for a specific table it is not invalidating references to this table. It is a lot of code ...
1
vote
2answers
167 views

Hibernate 2nd level cache update

I have following problem. I use JBoss 5.1, JPA/Hibernate with 2-nd level cache. My system has few entities mapping the same database table. Example: Table FURNITURES is mapped by entity 'Furn' and ...
0
votes
0answers
107 views

hibernate: updating second level cached element

I have an entity (User) cached with Hibernate at second level as READ-WRITE on top of the class User: @org.hibernate.annotations.Cache(usage = ...
1
vote
0answers
47 views

clear specific query in the QueryRegion

How can I clear a specific query in some query region that I created, and not all of the query region. I'm using Hibernate and Hazelcast as second level cache.
0
votes
1answer
92 views

Collection is not selected with NHibernate-Caching

I have the fallowing entities: Person Company And then, there is a entity PersonCompany which makes a Relation between Person and Company Mapping for Person is: public class PersonMap : ...
0
votes
0answers
111 views

EF second level cache using memcached

Is there any implemenation of a distributed second level cache for entity framework that uses memecached?
11
votes
1answer
335 views

NHibernate and Memcached - should use_minimal_puts be enabled?

I use NHibernate with Memcached as a second level cache and have always been curious about the cache.use_minimal_puts configuration option. According to the documentation: ...
0
votes
0answers
361 views

Hibernate L2 cache and JTA transaction rollback

How can I tell Hibernate to remove objects from L2 cache when transaction is rollbacked. Consider following use case: Transaction 1 Person p = new Person(); em.persist(p); Long pId = p.getId(); ...
0
votes
0answers
244 views

Reading the data Items from Cache is taking more time than Reading from Database in Hibernate

I am new to Hibernate and I trying to set up a second level cache to read from second-level and then update the about less than 5% of records that might have been modified. The table is MS_SQL and ...
0
votes
2answers
2k views

How to configure second level cache in Hibernate 4.1.5 SP1?

I have read other threads on here about this subject but none of the solutions work for me. I tried putting this in my hibernate.cfg.xml: <property ...
0
votes
0answers
90 views

Querying the Detached objects from second level cache

I am working on a application which has to update/insert into a Name_Detail table in MS-SQL by pulling out the the values from the Sybase. Sybase Table Structure - NameDetails , MS-SQL Table ...
0
votes
2answers
818 views

Hibernate Infinispan Entity/Query caching

I've been banging my head against the wall for a few days with this issue. We are trying to implement Hibernate's second-level cache, using Infinispan. The application is running on JBoss AS 6, and ...
2
votes
2answers
444 views

Hibernate 4 with second level cache: what wrong in my understanding?

I have starting to use Hibernate 4 with second level cache. The configuration was very simple according to the documentation: <property name="hibernate.cache.use_second_level_cache" ...
0
votes
1answer
487 views

Ehcache integration with Hibernate & Spring Exception: Second-level cache is not enabled for usage

I'm using Spring 3.1 with Hibernate 4. While using Ehcache with Hibernate, getting an error like this: Second-level cache is not enabled for usage [hibernate.cache.use_second_level_cache | ...
0
votes
0answers
322 views

Why can I update my read-only second level cache without exceptions?

I don't understand why the following code does not throw an exception in my unit tests because the cache is updated, even since I have configured a read-only second level cache as the code below: ...
1
vote
1answer
178 views

How to revert changes to collection owned by entity in Hibernate?

This should be a trivially easy task, but I can't get it to work. I want to be able to revert changes to a lazy-loaded collection (let's call it kittens) hanging off the main entity (let's call it ...
1
vote
1answer
602 views

Using hibernate 2nd level cache or query cache for lazy fetch queries

I successfully setup hibernate 3.6.2 to use second level cache, using the ehcache 2.5.2 library. I can see in logs and statistics that entities populate second level caches and that the queries that ...
0
votes
1answer
108 views

nhibernate second level cache with implicit transactions

I've read that we can't use 2nd level caching until we use (explicit) transactions - however, we are using a an Informix system - which for reasons currently beyond our control; an accounting system - ...
1
vote
1answer
255 views

Hibernate second level cache and RR transaction isolation

If two transactions (both at RR isolation level) ask for the same item which is 2nd-level cached, and then they modify and store this item. Now, for reading that item, they did not run any SQL because ...
2
votes
1answer
167 views

Hibernate Caching Causes Performance Drop on Low Percentage of @Cacheable Entities?

I have a Java application that uses the Hibernate persistance library, with about 100 mapped classes. To try out second-level caching, I added @Cacheable to 5 of the mapped classes. This caused a ...
0
votes
1answer
101 views

can NHibernate use database index in a QueryOver?

Suppose I have a entity with a id and a name fields. I want to look up those entities by name and I build a database index on the name field . Now when I use NHibernate QueryOver, can NHibernate ...
2
votes
3answers
1k views

Externarlize ehcache.xml to use properties from external properties file

I want to place property place holders in the ehcache.xml file (like ${}) so that the values can be replaced from external properties file (.properties) at runtime. Something like: ehcache.xml (in ...
0
votes
0answers
929 views

ehcache config proplem in persistence.xml with hibernate

we use jpa 1.0,hibernate 3.2.4,seam and ehcache we use use ehcache as a second level cache provider and this is our configuration for that: persistence.xml <persistence ...
2
votes
1answer
269 views

What's the difference between terracotta-hibernate-cache and Ehcache Distributed with Terracotta?

Is there a difference between using Ehcache as Hibernate's second-level cache provider and distributing it with Terracotta, and using terracotta-hibernate-cache and terracotta-hibernate-agent?
3
votes
1answer
226 views

Is/Can Hibernate's Second-Level Cache be Used for COUNT() operations?

When using Hibernate and Ehcache as a second-level cache (2LC) implementation, is (or can) this cache used when doing COUNT operations with a WHERE clause? In SQL terms the query I'm performing is ...
2
votes
2answers
2k views

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 particular). The application is a web-service developed using Hibernate, is deployed ...
1
vote
1answer
417 views

Multiple Second Level Cache Settings With One Hibernate Mapping

Supose that there multiple Java applications which share a common entity module (Entity classes + Hibernate XML mappings). Currently, the entities are not enabled for caching (no <cache.../> ...
1
vote
1answer
339 views

Dead Lock with JBoss Cache 1.4.1

I'm use: JBoss AS 4.2.3, JBoss Cache 1.4.1 SP12, Hibernate 3.2.6; JPA 1.0.1 with <attribute name="NodeLockingScheme">PESSIMISTIC</attribute> <attribute ...
4
votes
1answer
92 views

How to keep only last record in second level cache?

Every second I store a lot of objects Foo but new object is compared to previous. Can I configure NHibernate Second Level Cache to keep only last Foo object or should I implement this myself? Little ...
1
vote
2answers
793 views

How to implement ehcache self populating cache as hibernate second level cache

I am just exploring on Ehcache self populating cache as hibernate second level cache. Is hibernate support self populating cache? Can anybody help me find few sample implementations/docs related to ...
2
votes
1answer
274 views

Hibernate and Ehcache- How to make sure every “select” goes through the entity cache?

I have an entity (JPA annotations with Hibernate query interface) which has a composite business key of two properties (an external-id and a subsidiary-id [that's a foreign key]) and a primary db key. ...
2
votes
1answer
234 views

Hibernate 2nd level cache only write but not read

I have the next two entities Person: @Entity @Table(name = "person") public class PersonDTO implements Serializable { private static final long serialVersionUID = -3859029259805663330L; ...

1 2 3 4