Class AbstractMapQueryResultsCache
- java.lang.Object
-
- org.datanucleus.store.query.cache.AbstractMapQueryResultsCache
-
- All Implemented Interfaces:
Serializable,QueryResultsCache
- Direct Known Subclasses:
SoftQueryResultsCache,StrongQueryResultsCache,WeakQueryResultsCache
public class AbstractMapQueryResultsCache extends Object implements QueryResultsCache
Abstract representation of a query results cache for the query based on a map.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractMapQueryResultsCache(NucleusContext nucleusCtx)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Method to close the cache when no longer needed.booleancontains(String queryKey)Accessor for whether the specified query is in the cachevoidevict(Class candidate)Method to evict all queries that use the provided class as candidate.voidevict(Query query)Evict the query from the results cache.voidevict(Query query, Map params)Evict the query with the specified params from the results cache.voidevictAll()Method to clear the cache.List<Object>get(String queryKey)Accessor for the results from the cache.booleanisEmpty()Accessor for whether the cache is empty.voidpin(Query query)Method to pin the specified query in the cache, preventing garbage collection.voidpin(Query query, Map params)Method to pin the specified query in the cache, preventing garbage collection.List<Object>put(String queryKey, List<Object> results)Method to put an object in the cache.intsize()Accessor for the total number of results in the query cache.voidunpin(Query query)Method to unpin the specified query from the cache, allowing garbage collection.voidunpin(Query query, Map params)Method to unpin the specified query from the cache, allowing garbage collection.
-
-
-
Constructor Detail
-
AbstractMapQueryResultsCache
public AbstractMapQueryResultsCache(NucleusContext nucleusCtx)
-
-
Method Detail
-
close
public void close()
Description copied from interface:QueryResultsCacheMethod to close the cache when no longer needed. Provides a hook to release resources etc.- Specified by:
closein interfaceQueryResultsCache
-
contains
public boolean contains(String queryKey)
Description copied from interface:QueryResultsCacheAccessor for whether the specified query is in the cache- Specified by:
containsin interfaceQueryResultsCache- Parameters:
queryKey- The query key- Returns:
- Whether it is in the cache
-
evict
public void evict(Class candidate)
Description copied from interface:QueryResultsCacheMethod to evict all queries that use the provided class as candidate. This is usually called when an instance of the candidate has been changed in the datastore.- Specified by:
evictin interfaceQueryResultsCache- Parameters:
candidate- The candidate
-
evictAll
public void evictAll()
Description copied from interface:QueryResultsCacheMethod to clear the cache.- Specified by:
evictAllin interfaceQueryResultsCache
-
evict
public void evict(Query query)
Description copied from interface:QueryResultsCacheEvict the query from the results cache.- Specified by:
evictin interfaceQueryResultsCache- Parameters:
query- The query to evict (evicts all use of this query, with any params)
-
evict
public void evict(Query query, Map params)
Description copied from interface:QueryResultsCacheEvict the query with the specified params from the results cache.- Specified by:
evictin interfaceQueryResultsCache- Parameters:
query- The query to evictparams- The parameters
-
pin
public void pin(Query query, Map params)
Description copied from interface:QueryResultsCacheMethod to pin the specified query in the cache, preventing garbage collection.- Specified by:
pinin interfaceQueryResultsCache- Parameters:
query- The queryparams- Its params
-
pin
public void pin(Query query)
Description copied from interface:QueryResultsCacheMethod to pin the specified query in the cache, preventing garbage collection.- Specified by:
pinin interfaceQueryResultsCache- Parameters:
query- The query
-
unpin
public void unpin(Query query, Map params)
Description copied from interface:QueryResultsCacheMethod to unpin the specified query from the cache, allowing garbage collection.- Specified by:
unpinin interfaceQueryResultsCache- Parameters:
query- The queryparams- Its params
-
unpin
public void unpin(Query query)
Description copied from interface:QueryResultsCacheMethod to unpin the specified query from the cache, allowing garbage collection.- Specified by:
unpinin interfaceQueryResultsCache- Parameters:
query- The query
-
get
public List<Object> get(String queryKey)
Description copied from interface:QueryResultsCacheAccessor for the results from the cache.- Specified by:
getin interfaceQueryResultsCache- Parameters:
queryKey- The query key- Returns:
- The cached query result ids
-
isEmpty
public boolean isEmpty()
Description copied from interface:QueryResultsCacheAccessor for whether the cache is empty.- Specified by:
isEmptyin interfaceQueryResultsCache- Returns:
- Whether it is empty.
-
put
public List<Object> put(String queryKey, List<Object> results)
Description copied from interface:QueryResultsCacheMethod to put an object in the cache.- Specified by:
putin interfaceQueryResultsCache- Parameters:
queryKey- The query keyresults- The results for this query- Returns:
- The result ids previously associated with this query (if any)
-
size
public int size()
Description copied from interface:QueryResultsCacheAccessor for the total number of results in the query cache.- Specified by:
sizein interfaceQueryResultsCache- Returns:
- Number of queries
-
-