public class CacheUsage extends Object
JPA Query Hint Usage:
query.setHint(QueryHints.CACHE_USAGE, CacheUsage.CheckCacheOnly);
or
@QueryHint(name=QueryHints.CACHE_USAGE, value=CacheUsage.CheckCacheOnly)
Hint values are case-insensitive. "" could be used instead of default value CacheUsage.DEFAULT.
QueryHints
Modifier and Type | Field and Description |
---|---|
static String |
CheckCacheByExactPrimaryKey
Configure the cache to be checked first if the query is by primary key (only).
|
static String |
CheckCacheByPrimaryKey
Configure the cache to be checked first if the query contains the primary key.
|
static String |
CheckCacheOnly
Configure the cache to be searched for any matching objects.
|
static String |
CheckCacheThenDatabase
Configure the cache to be searched for any matching object before accesing the database.
|
static String |
ConformResultsInUnitOfWork
Configure the query results to be conformed with the current persistence context.
|
static String |
DEFAULT |
static String |
DoNotCheckCache
Do not check the cache first, this is the default for JPA Queries.
|
static String |
Invalidate
Configures a modify-all query to invalidate the cache.
|
static String |
NoCache
Configures a modify-all query to not invalidate the cache.
|
static String |
UseEntityDefault
By default the descriptor default is used, which is to not check the cache first.
|
Constructor and Description |
---|
CacheUsage() |
public static final String UseEntityDefault
public static final String DoNotCheckCache
public static final String CheckCacheByExactPrimaryKey
public static final String CheckCacheByPrimaryKey
public static final String CheckCacheThenDatabase
public static final String CheckCacheOnly
public static final String ConformResultsInUnitOfWork
public static final String NoCache
public static final String Invalidate
public static final String DEFAULT
Copyright © 2007–2021 Eclipse.org - EclipseLink Project. All rights reserved.