We are using Infinispan (clustered using JGroups) as our second level cache in our JPA(Hibernate) based application. When a database operation fails, we see that the level-2 cache is stale. For example:

1) Attempt to create a user with login "joe." 2) Call persist(user); 3) persist fails due to database uniqueness constraint. 4) Do a find by id on login=joe (assuming login is the PK). 5) Hibernate returns joe user from Infinispan cache, even though database doesn't have it.

Configuring XA transactions and have Infinispan participate in XA seems like overkill in this situation. Is XA the only way to address this?

link|improve this question

To close the loop on this, I had to enable XA (using Atomikos) to make keep the cache in sync. Manik's solution didn't work. – kabram Dec 16 '11 at 20:54
feedback

1 Answer

Enable transaction synchronization, much cheaper than XA.

See http://infinispan.blogspot.com/2011/06/faster-infinispan-based-second-level.html for more details.

link|improve this answer
Also see docs.jboss.org/author/display/ISPN/… – Manik Surtani Aug 24 '11 at 9:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.