[jboss-user] [JBoss Cache Users] - Re: Is it possible to access cache inside CacheLoader.put()
galder.zamarreno@jboss.com
do-not-reply at jboss.com
Wed Dec 2 04:44:55 EST 2009
What do you mean in your comment by " batching is enabled" ? Is this something that the exception indicated? Or something you added yourself?
In general, doing reentrant calls from the cache loader to the cache is not a good idea, particularly using cache.get() methods since these go via the interceptor chain and can create deadlocks.
Instead, what we have done in the past to access data from the cache, we have used CacheSPI.peek() calls which basically returns returns a node without accessing the interceptor chain. You can find an example in http://anonsvn.jboss.org/repos/jbosscache/core/trunk/src/main/java/org/jboss/cache/loader/ClusteredCacheLoader.java
If you're implementing a cache loader, have a look around to what is being done for other cache loaders in the JBoss Cache source code and you'll find answers to a lot of questions such as this one.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4268448#4268448
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4268448
More information about the jboss-user
mailing list