Uses of Interface
org.apache.cayenne.cache.QueryCache

Packages that use QueryCache
org.apache.cayenne Contains persistence APIs directly accessible by users. 
org.apache.cayenne.access Contains classes that make up Cayenne ORM stack. 
org.apache.cayenne.cache   
org.apache.cayenne.util General utility classes. 
 

Uses of QueryCache in org.apache.cayenne
 

Fields in org.apache.cayenne declared as QueryCache
protected  QueryCache BaseContext.queryCache
           
 

Methods in org.apache.cayenne that return QueryCache
 QueryCache BaseContext.getQueryCache()
          Returns QueryCache, creating it on the fly if needed.
 

Methods in org.apache.cayenne with parameters of type QueryCache
 void BaseContext.setQueryCache(QueryCache queryCache)
          Sets a QueryCache to be used for storing cached query results.
 

Uses of QueryCache in org.apache.cayenne.access
 

Fields in org.apache.cayenne.access declared as QueryCache
protected  QueryCache DataDomain.queryCache
           
 

Methods in org.apache.cayenne.access that return QueryCache
 QueryCache DataContext.getQueryCache()
          Returns QueryCache used by this DataContext, creating it on the fly if needed.
 QueryCache DataDomain.getQueryCache()
          Returns shared QueryCache used by this DataDomain, creating it on the fly if needed.
 

Uses of QueryCache in org.apache.cayenne.cache
 

Classes in org.apache.cayenne.cache that implement QueryCache
 class MapQueryCache
          A default implementation of the QueryCache interface that stores data in a non-expiring LRUMap.
 class NestedQueryCache
          A QueryCache wrapper that introduces a key namespace on top of a delegate shared cache.
 class OSQueryCache
          A QueryCache implementation based on OpenSymphony OSCache.
 

Fields in org.apache.cayenne.cache declared as QueryCache
protected  QueryCache NestedQueryCache.delegate
           
 

Methods in org.apache.cayenne.cache that return QueryCache
 QueryCache NestedQueryCache.getDelegate()
          Returns the actual implementation of the query cache that is wrapped by this NestedQueryCache.
 QueryCache MapQueryCacheFactory.getQueryCache(Map<String,String> properties)
           
 QueryCache OSQueryCacheFactory.getQueryCache(Map<String,String> properties)
          Creates QueryCache, ignoring provided properties, and reading data from "oscache.properties" file instead.
 QueryCache QueryCacheFactory.getQueryCache(Map<String,String> properties)
          Creates a new instance of the QueryCache, configuring it using provided properties.
 

Constructors in org.apache.cayenne.cache with parameters of type QueryCache
NestedQueryCache(QueryCache delegate)
           
 

Uses of QueryCache in org.apache.cayenne.util
 

Methods in org.apache.cayenne.util that return QueryCache
protected abstract  QueryCache ObjectContextQueryAction.getQueryCache()
           
 



Copyright © 2001-2011 Apache Cayenne. All Rights Reserved.