I have no real hibernate or ibatis (or any real ORM experience), but I am starting to learn ibatis. I have a general question on ORM caching. My assumption is that the objects are cached in
java memory. So...in a typical environment (multiple app servers, one database) how do you clear cache across all app servers programatically?
Example:
2 app servers, serverA and serverB
one object is cached on serverA...we'll call it InventoryList (list of available inventory)
serverA gets a call to updateInventory service which clears cache of InventoryList object on serverA
doesn't serverB still have the cached old object still there (not purged)?
Thanks,
Jim