I am using Ehcache in Hibernate. How can i notify the cache that the database is changed. How can i invalidate the data is cached. How can i programatically acheive this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
What do exactly mean? There are 2 ways to make a change in the database: inside the app & outside the app Inside the app you can trigger easily an invalidation. The second one is a harder to solve. Cache elements are stored with a key and based on that key you can delete it.
Depending how you configured ehcache of course. But you need to know the name of the cache that holds the object. |
|||
|
|
|
This is how you can invalidate all EhCache items without bothering what the individual cache names are:
|
|||
|