|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.hibernate.CacheMode
public final class CacheMode
Controls how the session interacts with the second-level cache and query cache.
Session.setCacheMode(CacheMode)
,
Serialized FormField Summary | |
---|---|
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. |
Method Summary | |
---|---|
boolean |
isGetEnabled()
|
boolean |
isPutEnabled()
|
static CacheMode |
parse(String name)
|
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final CacheMode NORMAL
public static final CacheMode IGNORE
public static final CacheMode GET
public static final CacheMode PUT
public static final CacheMode REFRESH
Method Detail |
---|
public String toString()
toString
in class Object
public boolean isPutEnabled()
public boolean isGetEnabled()
public static CacheMode parse(String name)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |