public final class UTF8TaxonomyWriterCache extends Object implements TaxonomyWriterCache, Accountable
NULL_ACCOUNTABLE
Constructor and Description |
---|
UTF8TaxonomyWriterCache()
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Clears the content of the cache.
|
void |
close()
Let go of whatever resources the cache is holding.
|
int |
get(FacetLabel label)
Lookup a category in the cache, returning its ordinal, or a negative
number if the category is not in the cache.
|
boolean |
isFull()
Returns true if the cache is full, such that the next
TaxonomyWriterCache.put(org.apache.lucene.facet.taxonomy.FacetLabel, int) will
evict entries from it, false otherwise. |
boolean |
put(FacetLabel label,
int ord)
Add a category to the cache, with the given ordinal as the value.
|
long |
ramBytesUsed() |
int |
size()
How many labels are currently stored in the cache.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getChildResources
public int get(FacetLabel label)
TaxonomyWriterCache
It is up to the caller to remember what a negative response means: If the caller knows the cache is complete (it was initially fed with all the categories, and since then put() never returned true) it means the category does not exist. Otherwise, the category might still exist, but just be missing from the cache.
get
in interface TaxonomyWriterCache
public boolean put(FacetLabel label, int ord)
TaxonomyWriterCache
If the implementation keeps only a partial cache (e.g., an LRU cache)
and finds that its cache is full, it should clear up part of the cache
and return true
. Otherwise, it should return
false
.
The reason why the caller needs to know if part of the cache was cleared is that in that case it will have to commit its on-disk index (so that all the latest category additions can be searched on disk, if we can't rely on the cache to contain them).
Ordinals should be non-negative. Currently there is no defined way to specify that a cache should remember a category does NOT exist. It doesn't really matter, because normally the next thing we do after finding that a category does not exist is to add it.
put
in interface TaxonomyWriterCache
public boolean isFull()
TaxonomyWriterCache
TaxonomyWriterCache.put(org.apache.lucene.facet.taxonomy.FacetLabel, int)
will
evict entries from it, false otherwise.isFull
in interface TaxonomyWriterCache
public void clear()
TaxonomyWriterCache
TaxonomyWriterCache.close()
, the caller can
assume that the cache is still operable after this method returns.clear
in interface TaxonomyWriterCache
public int size()
size
in interface TaxonomyWriterCache
public long ramBytesUsed()
ramBytesUsed
in interface Accountable
public void close()
TaxonomyWriterCache
close
in interface TaxonomyWriterCache
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.