org.hibernate
Class CacheMode
- Serializable
public final class CacheMode
extends java.lang.Object
implements Serializable
Controls how the session interacts with the second-level
cache and query cache.
static CacheMode | GET - The session may read items from the cache, but will not add items,
except to invalidate items when updates occur
|
static CacheMode | IGNORE - The session will never interact with the cache, except to invalidate
cache items when updates occur
|
static CacheMode | NORMAL - The session may read items from the cache, and add items to the cache
|
static CacheMode | PUT - The session will never read items from the cache, but will add items
to the cache as it reads them from the database.
|
static CacheMode | REFRESH - The session will never read items from the cache, but will add items
to the cache as it reads them from the database.
|
GET
public static final CacheMode GET
The session may read items from the cache, but will not add items,
except to invalidate items when updates occur
IGNORE
public static final CacheMode IGNORE
The session will never interact with the cache, except to invalidate
cache items when updates occur
NORMAL
public static final CacheMode NORMAL
The session may read items from the cache, and add items to the cache
PUT
public static final CacheMode PUT
The session will never read items from the cache, but will add items
to the cache as it reads them from the database.
REFRESH
public static final CacheMode REFRESH
The session will never read items from the cache, but will add items
to the cache as it reads them from the database. In this mode, the
effect of hibernate.cache.use_minimal_puts is bypassed, in
order to force a cache refresh
isGetEnabled
public boolean isGetEnabled()
isPutEnabled
public boolean isPutEnabled()
parse
public static CacheMode parse(String name)
toString
public String toString()