public class LRUQueryCache extends Object implements QueryCache, Accountable
QueryCache
that evicts queries using a LRU (least-recently-used)
eviction policy in order to remain under a given maximum size and number of
bytes used.
This class is thread-safe.
Note that query eviction runs in linear time with the total number of
segments that have cache entries so this cache works best with
caching policies
that only cache on "large"
segments, and it is advised to not share this cache across too many indices.
Typical usage looks like this:
final int maxNumberOfCachedQueries = 256; final long maxRamBytesUsed = 50 * 1024L * 1024L; // 50MB // these cache and policy instances can be shared across several queries and readers // it is fine to eg. store them into static variables final QueryCache queryCache = new LRUQueryCache(maxNumberOfCachedQueries, maxRamBytesUsed); final QueryCachingPolicy defaultCachingPolicy = new UsageTrackingQueryCachingPolicy(); // ... // Then at search time Query myQuery = ...; Query myCacheQuery = queryCache.doCache(myQuery, defaultCachingPolicy); // myCacheQuery is now a wrapper around the original query that will interact with the cache IndexSearcher searcher = ...; TopDocs topDocs = searcher.search(new ConstantScoreQuery(myCacheQuery), 10);This cache exposes some global statistics (
hit count
,
miss count
, number of cache
entries
, total number of DocIdSets that have ever
been cached
, number of evicted entries
). In
case you would like to have more fine-grained statistics, such as per-index
or per-query-class statistics, it is possible to override various callbacks:
onHit(java.lang.Object, org.apache.lucene.search.Query)
, onMiss(java.lang.Object, org.apache.lucene.search.Query)
,
onQueryCache(org.apache.lucene.search.Query, long)
, onQueryEviction(org.apache.lucene.search.Query, long)
,
onDocIdSetCache(java.lang.Object, long)
, onDocIdSetEviction(java.lang.Object, int, long)
and onClear()
.
It is better to not perform heavy computations in these methods though since
they are called synchronously and under a lock.QueryCachingPolicy
Constructor and Description |
---|
LRUQueryCache(int maxSize,
long maxRamBytesUsed)
Create a new instance that will cache at most
maxSize queries
with at most maxRamBytesUsed bytes of memory. |
Modifier and Type | Method and Description |
---|---|
protected DocIdSet |
cacheImpl(BulkScorer scorer,
int maxDoc)
Default cache implementation: uses
RoaringDocIdSet . |
void |
clear()
Clear the content of this cache.
|
void |
clearCoreCacheKey(Object coreKey)
Remove all cache entries for the given core cache key.
|
void |
clearQuery(Query query)
Remove all cache entries for the given query.
|
Weight |
doCache(Weight weight,
QueryCachingPolicy policy)
Return a wrapper around the provided
weight that will cache
matching docs per-segment accordingly to the given policy . |
long |
getCacheCount()
Return the total number of cache entries that have been generated and put
in the cache.
|
long |
getCacheSize()
Return the total number of
DocIdSet s which are currently stored
in the cache. |
Collection<Accountable> |
getChildResources()
Returns nested resources of this class.
|
long |
getEvictionCount()
Return the number of cache entries that have been removed from the cache
either in order to stay under the maximum configured size/ram usage, or
because a segment has been closed.
|
long |
getHitCount()
|
long |
getMissCount()
Over the
total number of times that a query has
been looked up, return how many times this query was not contained in the
cache. |
long |
getTotalCount()
Return the total number of times that a
Query has been looked up
in this QueryCache . |
protected void |
onClear()
Expert: callback when the cache is completely cleared.
|
protected void |
onDocIdSetCache(Object readerCoreKey,
long ramBytesUsed)
Expert: callback when a
DocIdSet is added to this cache. |
protected void |
onDocIdSetEviction(Object readerCoreKey,
int numEntries,
long sumRamBytesUsed)
Expert: callback when one or more
DocIdSet s are removed from this
cache. |
protected void |
onHit(Object readerCoreKey,
Query query)
Expert: callback when there is a cache hit on a given query.
|
protected void |
onMiss(Object readerCoreKey,
Query query)
Expert: callback when there is a cache miss on a given query.
|
protected void |
onQueryCache(Query query,
long ramBytesUsed)
Expert: callback when a query is added to this cache.
|
protected void |
onQueryEviction(Query query,
long ramBytesUsed)
Expert: callback when a query is evicted from this cache.
|
long |
ramBytesUsed()
Return the memory usage of this object in bytes.
|
protected long |
ramBytesUsed(Query query)
Return the number of bytes used by the given query.
|
public LRUQueryCache(int maxSize, long maxRamBytesUsed)
maxSize
queries
with at most maxRamBytesUsed
bytes of memory.protected void onHit(Object readerCoreKey, Query query)
onMiss(java.lang.Object, org.apache.lucene.search.Query)
protected void onMiss(Object readerCoreKey, Query query)
onHit(java.lang.Object, org.apache.lucene.search.Query)
protected void onQueryCache(Query query, long ramBytesUsed)
onQueryEviction(org.apache.lucene.search.Query, long)
protected void onQueryEviction(Query query, long ramBytesUsed)
onQueryCache(org.apache.lucene.search.Query, long)
protected void onDocIdSetCache(Object readerCoreKey, long ramBytesUsed)
DocIdSet
is added to this cache.
Implementing this method is typically useful in order to compute more
fine-grained statistics about the query cache.onDocIdSetEviction(java.lang.Object, int, long)
protected void onDocIdSetEviction(Object readerCoreKey, int numEntries, long sumRamBytesUsed)
DocIdSet
s are removed from this
cache.onDocIdSetCache(java.lang.Object, long)
protected void onClear()
public void clearCoreCacheKey(Object coreKey)
public void clearQuery(Query query)
public void clear()
public Weight doCache(Weight weight, QueryCachingPolicy policy)
QueryCache
weight
that will cache
matching docs per-segment accordingly to the given policy
.
NOTE: The returned weight will only be equivalent if scores are not needed.doCache
in interface QueryCache
Collector.needsScores()
public long ramBytesUsed()
Accountable
ramBytesUsed
in interface Accountable
public Collection<Accountable> getChildResources()
Accountable
getChildResources
in interface Accountable
Accountables
protected long ramBytesUsed(Query query)
Accountable.ramBytesUsed()
if the query
implements Accountable
and 1024
otherwise.protected DocIdSet cacheImpl(BulkScorer scorer, int maxDoc) throws IOException
RoaringDocIdSet
.IOException
public final long getTotalCount()
Query
has been looked up
in this QueryCache
. Note that this number is incremented once per
segment so running a cached query only once will increment this counter
by the number of segments that are wrapped by the searcher.
Note that by definition, getTotalCount()
is the sum of
getHitCount()
and getMissCount()
.getHitCount()
,
getMissCount()
public final long getHitCount()
total
number of times that a query has
been looked up, return how many times a cached DocIdSet
has been
found and returned.getTotalCount()
,
getMissCount()
public final long getMissCount()
total
number of times that a query has
been looked up, return how many times this query was not contained in the
cache.getTotalCount()
,
getHitCount()
public final long getCacheSize()
DocIdSet
s which are currently stored
in the cache.getCacheCount()
,
getEvictionCount()
public final long getCacheCount()
hit
count
that is much higher than the cache count
as the opposite would indicate that the query cache makes efforts in order
to cache queries but then they do not get reused.getCacheSize()
,
getEvictionCount()
public final long getEvictionCount()
caching policy
caches too aggressively on NRT segments which get merged
early.getCacheCount()
,
getCacheSize()
Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.