Class JavaxCacheQueryCompilationCache
- java.lang.Object
-
- org.datanucleus.store.query.cache.JavaxCacheQueryCompilationCache
-
- All Implemented Interfaces:
Serializable,QueryCompilationCache
public class JavaxCacheQueryCompilationCache extends Object implements QueryCompilationCache, Serializable
Query compilation cache using javax.cache for implementation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JavaxCacheQueryCompilationCache(NucleusContext nucleusCtx)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Method to clear the cache.voidclose()Method to close the cache when no longer needed.booleancontains(String queryKey)Accessor for whether the specified query is in the cachevoidevict(String queryKey)Evict the query from the compilation cache.QueryCompilationget(String queryKey)Accessor for a (generic) compilation from the cache.booleanisEmpty()Accessor for whether the cache is empty.QueryCompilationput(String queryKey, QueryCompilation compilation)Method to put an object in the cache.intsize()Accessor for the total number of compilations in the query cache.
-
-
-
Constructor Detail
-
JavaxCacheQueryCompilationCache
public JavaxCacheQueryCompilationCache(NucleusContext nucleusCtx)
-
-
Method Detail
-
close
public void close()
Description copied from interface:QueryCompilationCacheMethod to close the cache when no longer needed. Provides a hook to release resources etc.- Specified by:
closein interfaceQueryCompilationCache
-
evict
public void evict(String queryKey)
Description copied from interface:QueryCompilationCacheEvict the query from the compilation cache.- Specified by:
evictin interfaceQueryCompilationCache- Parameters:
queryKey- Key for the query to evict.
-
clear
public void clear()
Description copied from interface:QueryCompilationCacheMethod to clear the cache.- Specified by:
clearin interfaceQueryCompilationCache
-
isEmpty
public boolean isEmpty()
Description copied from interface:QueryCompilationCacheAccessor for whether the cache is empty.- Specified by:
isEmptyin interfaceQueryCompilationCache- Returns:
- Whether it is empty.
-
size
public int size()
Description copied from interface:QueryCompilationCacheAccessor for the total number of compilations in the query cache.- Specified by:
sizein interfaceQueryCompilationCache- Returns:
- Number of queries
-
get
public QueryCompilation get(String queryKey)
Description copied from interface:QueryCompilationCacheAccessor for a (generic) compilation from the cache.- Specified by:
getin interfaceQueryCompilationCache- Parameters:
queryKey- The query key- Returns:
- The cached query compilation
-
put
public QueryCompilation put(String queryKey, QueryCompilation compilation)
Description copied from interface:QueryCompilationCacheMethod to put an object in the cache.- Specified by:
putin interfaceQueryCompilationCache- Parameters:
queryKey- The query keycompilation- The compilation to cache- Returns:
- The cached query previously associated with this query
-
contains
public boolean contains(String queryKey)
Description copied from interface:QueryCompilationCacheAccessor for whether the specified query is in the cache- Specified by:
containsin interfaceQueryCompilationCache- Parameters:
queryKey- The query key- Returns:
- Whether it is in the cache
-
-