This content has been marked as final.
Show 2 replies
-
1. Re: What does pojoCache.findAll() actually do?
jason.greene Aug 5, 2009 7:08 PM (in response to niuxuetao_fiserv)The docs are confusing. The method can be executed concurrently, the map it returns is not thread-safe, and should not be passed to other threads.
It will effectively load everything back into memory that is under that fqn, as the scanning will force jboss cache to reload it. However the cache could decide to evict them again at a later date, and the objects in the map would still work. -
2. Re: What does pojoCache.findAll() actually do?
niuxuetao_fiserv Aug 6, 2009 6:23 AM (in response to niuxuetao_fiserv)Thanks, that answers my questions.