From: <ben...@jb...> - 2006-06-20 14:06:26
|
Yeah, I think the issue basically boils down to whether we will have two separate configuration files for PojoCache (PC) and JBossCache (JBC) or not. It has pros and cons. 1. Have two separate configs, | Cache cache = CacheFactory(cacheConfig); | PojoCache pc = PojoCacheFactory(pojoCacheConfig, cache); | 2. Just one config containing both JBC and PC, | PojoCache pc = PojoCacheFactory(config); | Cache cache = pc.getCache(); | I prefer the second one but what do people think? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951998#3951998 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951998 |