Class LRUCache<K,V>
- java.lang.Object
-
- org.apache.solr.search.SolrCacheBase
-
- org.apache.solr.search.LRUCache<K,V>
-
- All Implemented Interfaces:
org.apache.lucene.util.Accountable,SolrInfoBean,SolrMetricProducer,SolrCache<K,V>
public class LRUCache<K,V> extends SolrCacheBase implements SolrCache<K,V>, org.apache.lucene.util.Accountable
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.solr.search.SolrCacheBase
SolrCacheBase.AutoWarmCountRef
-
Nested classes/interfaces inherited from interface org.apache.solr.search.SolrCache
SolrCache.State
-
Nested classes/interfaces inherited from interface org.apache.solr.core.SolrInfoBean
SolrInfoBean.Category, SolrInfoBean.Group
-
-
Field Summary
Fields Modifier and Type Field Description static longDEFAULT_RAM_BYTES_USEDstatic longHASHTABLE_RAM_BYTES_PER_ENTRY-
Fields inherited from class org.apache.solr.search.SolrCacheBase
autowarm, regenerator
-
-
Constructor Summary
Constructors Constructor Description LRUCache()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear():TODO: copy from Mapvoidclose()Frees any non-memory resourcesVget(K key):TODO: copy from MapCollection<org.apache.lucene.util.Accountable>getChildResources()StringgetDescription()Simple one or two line descriptionSet<String>getMetricNames()Modifiable set of metric names that this component reports (default is null, which means none).com.codahale.metrics.MetricRegistrygetMetricRegistry()An instance ofMetricRegistrythat this component uses for metrics reporting (default is null, which means no registry).StringgetName()Simple common usage name, e.g.Objectinit(Map args, Object persistence, CacheRegenerator regenerator)The initialization routine.voidinitializeMetrics(SolrMetricManager manager, String registryName, String tag, String scope)Initializes metrics specific to this producer.Vput(K key, V value):TODO: copy from MaplongramBytesUsed()intsize():TODO: copy from MapStringtoString()voidwarm(SolrIndexSearcher searcher, SolrCache<K,V> old)Warm this cache associated withsearcherusing theoldcache object.-
Methods inherited from class org.apache.solr.search.SolrCacheBase
calcHitRatio, getAutowarmDescription, getCategory, getState, getVersion, init, isAutowarmingOn, name, setState
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.solr.core.SolrInfoBean
getCategory, getMetricsSnapshot, registerMetricName
-
Methods inherited from interface org.apache.solr.metrics.SolrMetricProducer
initializeMetrics
-
-
-
-
Field Detail
-
DEFAULT_RAM_BYTES_USED
public static final long DEFAULT_RAM_BYTES_USED
- See Also:
- Constant Field Values
-
HASHTABLE_RAM_BYTES_PER_ENTRY
public static final long HASHTABLE_RAM_BYTES_PER_ENTRY
-
-
Method Detail
-
init
public Object init(Map args, Object persistence, CacheRegenerator regenerator)
Description copied from interface:SolrCacheThe initialization routine. Instance specific arguments are passed in theargsmap.The persistence object will exist across different lifetimes of similar caches. For example, all filter caches will share the same persistence object, sometimes at the same time (it must be thread-safe). If null is passed, then the cache implementation should create and return a new persistence object. If not null, the passed in object should be returned again.
Since it will exist across the lifetime of many caches, care should be taken to not reference any particular cache instance and prevent it from being garbage collected (no using inner classes unless they are static).
The persistence object is designed to be used as a way for statistics to accumulate across all instances of the same type of cache, however the object may be of any type desired by the cache implementation.
The
CacheRegeneratoris what the cache uses during auto-warming to regenerate an item in the new cache from an entry in the old cache.
-
size
public int size()
Description copied from interface:SolrCache:TODO: copy from Map
-
clear
public void clear()
Description copied from interface:SolrCache:TODO: copy from Map
-
warm
public void warm(SolrIndexSearcher searcher, SolrCache<K,V> old)
Description copied from interface:SolrCacheWarm this cache associated withsearcherusing theoldcache object.thisandoldwill have the same concrete type.
-
close
public void close()
Description copied from interface:SolrCacheFrees any non-memory resources
-
getName
public String getName()
Description copied from interface:SolrInfoBeanSimple common usage name, e.g. BasicQueryHandler, or fully qualified class name.- Specified by:
getNamein interfaceSolrInfoBean
-
getDescription
public String getDescription()
Description copied from interface:SolrInfoBeanSimple one or two line description- Specified by:
getDescriptionin interfaceSolrInfoBean
-
getMetricNames
public Set<String> getMetricNames()
Description copied from interface:SolrInfoBeanModifiable set of metric names that this component reports (default is null, which means none). If not null then this set is used bySolrInfoBean.registerMetricName(String)to capture what metrics names are reported from this component.NOTE: this set has to allow iteration under modifications.
- Specified by:
getMetricNamesin interfaceSolrInfoBean
-
initializeMetrics
public void initializeMetrics(SolrMetricManager manager, String registryName, String tag, String scope)
Description copied from interface:SolrMetricProducerInitializes metrics specific to this producer.Note: for back-compatibility this method by default calls
SolrMetricProducer.initializeMetrics(SolrMetricManager, String, String).- Specified by:
initializeMetricsin interfaceSolrMetricProducer- Parameters:
manager- an instance ofSolrMetricManagerregistryName- registry name where metrics are registeredtag- symbolic tag that represents a group of related instances that have the same life-cycle. Parent component can use thetagwhen callingSolrMetricManager.unregisterGauges(String, String)to unregister metrics created by this instance of the producer.scope- scope of the metrics (eg. handler name) to separate metrics of instances of the same component executing in different contexts
-
getMetricRegistry
public com.codahale.metrics.MetricRegistry getMetricRegistry()
Description copied from interface:SolrInfoBeanAn instance ofMetricRegistrythat this component uses for metrics reporting (default is null, which means no registry).- Specified by:
getMetricRegistryin interfaceSolrInfoBean
-
ramBytesUsed
public long ramBytesUsed()
- Specified by:
ramBytesUsedin interfaceorg.apache.lucene.util.Accountable
-
getChildResources
public Collection<org.apache.lucene.util.Accountable> getChildResources()
- Specified by:
getChildResourcesin interfaceorg.apache.lucene.util.Accountable
-
-