From: <ben...@jb...> - 2006-06-22 01:32:32
|
A PojoCache impl will need to have Cache implementation as well one way or the other. This is such that a user may need to revert back to the plain old Cache api (like get()). Here is what I have in mind: | PojoCache pc = PojoCacheFactory.createInstance(config); | pc.attach(id, pojo); | | ... | | // Obtain the underlying cache impl. | Cache cache = pc.getCache(); | cache.put(...); | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952521#3952521 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952521 |