JBossCache stores all entries belonging to a FQN into a single node in BDBJE. (Personally,
I don't agree with that approach as some people might prefer to store large values
under a single FQN.) However, your application can be easily changed. Instead of
cache.put(fqn, key, value);
do
cache.put(new Fqn(fqn, key), key2, value);
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3981354#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...