Class CacheableQuery
java.lang.Object
org.apache.cayenne.query.CacheableQuery
- All Implemented Interfaces:
Serializable, Query
- Direct Known Subclasses:
AbstractQuery, EJBQLQuery
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract org.apache.cayenne.query.BaseQueryMetadatavoidsetCacheGroup(String cacheGroup) voidsetCacheStrategy(QueryCacheStrategy strategy) voidInstructs Cayenne to look for query results in the "local" cache when running the query.voiduseLocalCache(String cacheGroup) Instructs Cayenne to look for query results in the "local" cache when running the query.voidInstructs Cayenne to look for query results in the "shared" cache when running the query.voiduseSharedCache(String cacheGroup) Instructs Cayenne to look for query results in the "shared" cache when running the query.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Query
createSQLAction, getMetaData, route
-
Field Details
-
logger
protected static final org.slf4j.Logger logger
-
-
Constructor Details
-
CacheableQuery
public CacheableQuery()
-
-
Method Details
-
getBaseMetaData
protected abstract org.apache.cayenne.query.BaseQueryMetadata getBaseMetaData() -
getCacheStrategy
- Since:
- 3.0
-
setCacheStrategy
- Since:
- 3.0
-
getCacheGroup
- Since:
- 4.0
-
setCacheGroup
- Since:
- 4.0
-
useLocalCache
public void useLocalCache()Instructs Cayenne to look for query results in the "local" cache when running the query. This is a short-hand notation for:query.setCacheStrategy(QueryCacheStrategy.LOCAL_CACHE);
- Since:
- 4.0
-
useLocalCache
Instructs Cayenne to look for query results in the "local" cache when running the query. This is a short-hand notation for:query.setCacheStrategy(QueryCacheStrategy.LOCAL_CACHE); query.setCacheGroups("group1", "group2");- Since:
- 4.0
-