Managing the cache

Besides configuring the cache in your setting files, you can further modify the cache behavior in the code. This is important because in some cases, you would like to bypass the cache completely or force the cache to expire. We will discuss these cases here.

Remove cached entities

In some cases, you want to force the eviction of a cached entity because you may know at some of point of your program execution you will end up with stale data. You can evict entities from both the first-level cache and the second-level cache.

The API to evict entities from the first-level cache is through the session object, that is, session.evict(). You should note that if the cached entity has been modified during the session, the changes would not ...

Get Mastering Hibernate now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.