From: <ben...@jb...> - 2006-06-16 05:58:00
|
This is a sample usage that I can envision: | PojoCache cache = PojoCacheFactory.getInstnace(PojoConfig); | | Person p = new Person(); | String id = "/person/p"); | | cache.attach(id, p); | | Person p1 = (Person)cache.find(id); | | cache.detach(p); | or | cache.detach(id); | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951220#3951220 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951220 |