Class Cl2oTaxonomyWriterCache
- java.lang.Object
-
- org.apache.lucene.facet.taxonomy.writercache.Cl2oTaxonomyWriterCache
-
- All Implemented Interfaces:
TaxonomyWriterCache
public class Cl2oTaxonomyWriterCache extends java.lang.Object implements TaxonomyWriterCache
TaxonomyWriterCacheusingCompactLabelToOrdinal. Although called cache, it maintains in memory all the mappings from category to ordinal, relying on thatCompactLabelToOrdinalis an efficient mapping for this purpose.
-
-
Constructor Summary
Constructors Constructor Description Cl2oTaxonomyWriterCache(int initialCapcity, float loadFactor, int numHashArrays)Sole constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Clears the content of the cache.voidclose()Let go of whatever resources the cache is holding.intget(FacetLabel categoryPath)Lookup a category in the cache, returning its ordinal, or a negative number if the category is not in the cache.intgetMemoryUsage()Returns the number of bytes in memory used by this object.booleanisFull()Returns true if the cache is full, such that the nextTaxonomyWriterCache.put(org.apache.lucene.facet.taxonomy.FacetLabel, int)will evict entries from it, false otherwise.booleanput(FacetLabel categoryPath, int ordinal)Add a category to the cache, with the given ordinal as the value.
-
-
-
Method Detail
-
clear
public void clear()
Description copied from interface:TaxonomyWriterCacheClears the content of the cache. UnlikeTaxonomyWriterCache.close(), the caller can assume that the cache is still operable after this method returns.- Specified by:
clearin interfaceTaxonomyWriterCache
-
close
public void close()
Description copied from interface:TaxonomyWriterCacheLet go of whatever resources the cache is holding. After a close(), this object can no longer be used.- Specified by:
closein interfaceTaxonomyWriterCache
-
isFull
public boolean isFull()
Description copied from interface:TaxonomyWriterCacheReturns true if the cache is full, such that the nextTaxonomyWriterCache.put(org.apache.lucene.facet.taxonomy.FacetLabel, int)will evict entries from it, false otherwise.- Specified by:
isFullin interfaceTaxonomyWriterCache
-
get
public int get(FacetLabel categoryPath)
Description copied from interface:TaxonomyWriterCacheLookup a category in the cache, returning its ordinal, or a negative number if the category is not in the cache.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.
- Specified by:
getin interfaceTaxonomyWriterCache
-
put
public boolean put(FacetLabel categoryPath, int ordinal)
Description copied from interface:TaxonomyWriterCacheAdd a category to the cache, with the given ordinal as the value.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 returnfalse.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.
- Specified by:
putin interfaceTaxonomyWriterCache
-
getMemoryUsage
public int getMemoryUsage()
Returns the number of bytes in memory used by this object.
-
-