Class SolrCacheHolder<K,V>
- java.lang.Object
-
- org.apache.solr.search.SolrCacheHolder<K,V>
-
- All Implemented Interfaces:
AutoCloseable,SolrInfoBean,SolrMetricProducer,SolrCache<K,V>
public class SolrCacheHolder<K,V> extends Object implements SolrCache<K,V>
-
-
Nested Class Summary
-
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 protected SolrCache<K,V>delegate-
Fields inherited from interface org.apache.solr.search.SolrCache
CLEANUP_THREAD_PARAM, EVICTIONS_PARAM, HIT_RATIO_PARAM, HITS_PARAM, INITIAL_SIZE_PARAM, INSERTS_PARAM, LOOKUPS_PARAM, MAX_IDLE_TIME_PARAM, MAX_RAM_MB_PARAM, MAX_SIZE_PARAM, RAM_BYTES_USED_PARAM, SHOW_ITEMS_PARAM, SIZE_PARAM
-
-
Constructor Summary
Constructors Constructor Description SolrCacheHolder(SolrCache<K,V> delegate, CacheConfig factory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear():TODO: copy from Mapvoidclose()Frees any non-memory resourcesVcomputeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)Get an existing element or atomically compute it if missing.SolrCache<K,V>get()Vget(K key):TODO: copy from MapSolrInfoBean.CategorygetCategory()Category of this componentStringgetDescription()Simple one or two line descriptionintgetMaxRamMB()Returns maximum size limit (in MB) if set and supported, -1 otherwise.intgetMaxSize()Returns maximum size limit (number of items) if set and supported, -1 otherwise.Set<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.SolrCache.StategetState()Returns the last State set on this instanceObjectinit(Map args, Object persistence, CacheRegenerator regenerator)The initialization routine.voidinitializeMetrics(SolrMetricsContext parentContext, String scope)Initialize metrics specific to this producer.Stringname()Name the Cache can be referenced with by SolrRequestHandlers.Vput(K key, V value):TODO: copy from MapVremove(K key)voidsetMaxRamMB(int maxRamMB)Set maximum size limit (in MB), or -1 for unlimited.voidsetMaxSize(int maxSize)Set maximum size limit (number of items), or -1 for unlimited.voidsetState(SolrCache.State state)Set different cache states.intsize():TODO: copy from Mapvoidwarm(SolrIndexSearcher searcher, SolrCache<K,V> old)Warm this cache associated withsearcherusing theoldcache object.voidwarm(SolrIndexSearcher searcher, SolrCacheHolder src)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.solr.core.SolrInfoBean
getMetricsSnapshot, registerMetricName
-
Methods inherited from interface org.apache.solr.metrics.SolrMetricProducer
getSolrMetricsContext, initializeMetrics
-
-
-
-
Constructor Detail
-
SolrCacheHolder
public SolrCacheHolder(SolrCache<K,V> delegate, CacheConfig factory)
-
-
Method Detail
-
size
public int size()
Description copied from interface:SolrCache:TODO: copy from Map
-
computeIfAbsent
public V computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
Description copied from interface:SolrCacheGet an existing element or atomically compute it if missing.- Specified by:
computeIfAbsentin interfaceSolrCache<K,V>- Parameters:
key- keymappingFunction- function to compute the element. If the function returns a null result the cache mapping will not be created. NOTE: this function must NOT attempt to modify any mappings in the cache.- Returns:
- existing or newly computed value, null if there was no existing value and it was not possible to compute a new value (in which case the new mapping won't be created).
-
clear
public void clear()
Description copied from interface:SolrCache:TODO: copy from Map
-
setState
public void setState(SolrCache.State state)
Description copied from interface:SolrCacheSet different cache states. The state a cache is in can have an effect on how statistics are kept. The cache user (SolrIndexSearcher) will take care of switching cache states.
-
getState
public SolrCache.State getState()
Description copied from interface:SolrCacheReturns the last State set on this instance- Specified by:
getStatein interfaceSolrCache<K,V>- See Also:
SolrCache.setState(org.apache.solr.search.SolrCache.State)
-
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() throws ExceptionDescription copied from interface:SolrCacheFrees any non-memory resources- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceSolrCache<K,V>- Specified by:
closein interfaceSolrMetricProducer- Throws:
Exception
-
getMaxSize
public int getMaxSize()
Description copied from interface:SolrCacheReturns maximum size limit (number of items) if set and supported, -1 otherwise.- Specified by:
getMaxSizein interfaceSolrCache<K,V>
-
setMaxSize
public void setMaxSize(int maxSize)
Description copied from interface:SolrCacheSet maximum size limit (number of items), or -1 for unlimited. Note: this has effect only on implementations that support it, it's a no-op otherwise- Specified by:
setMaxSizein interfaceSolrCache<K,V>
-
getMaxRamMB
public int getMaxRamMB()
Description copied from interface:SolrCacheReturns maximum size limit (in MB) if set and supported, -1 otherwise.- Specified by:
getMaxRamMBin interfaceSolrCache<K,V>
-
setMaxRamMB
public void setMaxRamMB(int maxRamMB)
Description copied from interface:SolrCacheSet maximum size limit (in MB), or -1 for unlimited. Note: this has effect only on implementations that support it, it's a no-op otherwise.- Specified by:
setMaxRamMBin interfaceSolrCache<K,V>
-
warm
public void warm(SolrIndexSearcher searcher, SolrCacheHolder src)
-
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.
-
name
public String name()
Description copied from interface:SolrCacheName the Cache can be referenced with by SolrRequestHandlers. This method must return the identifier that the Cache instance expects SolrRequestHandlers to use when requesting access to it from the SolrIndexSearcher. It is strongly recommended that this method return the value of the "name" parameter from the init args. :TODO: verify this.
-
getName
public String getName()
Description copied from interface:SolrInfoBeanSimple common usage name, e.g. BasicQueryHandler, or fully qualified class name.- Specified by:
getNamein interfaceSolrInfoBean
-
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
-
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
-
getDescription
public String getDescription()
Description copied from interface:SolrInfoBeanSimple one or two line description- Specified by:
getDescriptionin interfaceSolrInfoBean
-
getCategory
public SolrInfoBean.Category getCategory()
Description copied from interface:SolrInfoBeanCategory of this component- Specified by:
getCategoryin interfaceSolrInfoBean
-
initializeMetrics
public void initializeMetrics(SolrMetricsContext parentContext, String scope)
Description copied from interface:SolrMetricProducerInitialize metrics specific to this producer.- Specified by:
initializeMetricsin interfaceSolrMetricProducer- Parameters:
parentContext- parent metrics context. If this component has the same life-cycle as the parent it can simply use the parent context, otherwise it should obtain a child context usingSolrMetricsContext.getChildContext(Object)passingthisas the child.scope- component scope
-
-