Class LFUCache<K,V>
- java.lang.Object
-
- org.apache.solr.search.LFUCache<K,V>
-
- All Implemented Interfaces:
SolrInfoBean
,SolrMetricProducer
,SolrCache<K,V>
public class LFUCache<K,V> extends Object implements SolrCache<K,V>
SolrCache based on ConcurrentLFUCache implementation.This implementation does not use a separate cleanup thread. Instead it uses the calling thread itself to do the cleanup when the size of the cache exceeds certain limits.
Also see SolrCaching
This API is experimental and subject to change
- Since:
- solr 3.6
- See Also:
ConcurrentLFUCache
,SolrCache
-
-
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
-
-
Constructor Summary
Constructors Constructor Description LFUCache()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
:TODO: copy from Mapvoid
close()
Frees any non-memory resourcesV
get(K key)
:TODO: copy from MapSolrInfoBean.Category
getCategory()
Category of this componentString
getDescription()
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.MetricRegistry
getMetricRegistry()
An instance ofMetricRegistry
that this component uses for metrics reporting (default is null, which means no registry).String
getName()
Simple common usage name, e.g.SolrCache.State
getState()
Returns the last State set on this instanceObject
init(Map args, Object persistence, CacheRegenerator regenerator)
The initialization routine.void
initializeMetrics(SolrMetricManager manager, String registryName, String tag, String scope)
Initializes metrics specific to this producerString
name()
Name the Cache can be referenced with by SolrRequestHandlers.V
put(K key, V value)
:TODO: copy from Mapvoid
setState(SolrCache.State state)
Set different cache states.int
size()
:TODO: copy from MapString
toString()
void
warm(SolrIndexSearcher searcher, SolrCache old)
Warm this cache associated withsearcher
using theold
cache object.-
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
getMetricsSnapshot, registerMetricName
-
-
-
-
Method Detail
-
init
public Object init(Map args, Object persistence, CacheRegenerator regenerator)
Description copied from interface:SolrCache
The initialization routine. Instance specific arguments are passed in theargs
map.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
CacheRegenerator
is 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:SolrCache
Name 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.
-
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
-
setState
public void setState(SolrCache.State state)
Description copied from interface:SolrCache
Set 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:SolrCache
Returns the last State set on this instance- Specified by:
getState
in interfaceSolrCache<K,V>
- See Also:
SolrCache.setState(org.apache.solr.search.SolrCache.State)
-
warm
public void warm(SolrIndexSearcher searcher, SolrCache old)
Description copied from interface:SolrCache
Warm this cache associated withsearcher
using theold
cache object.this
andold
will have the same concrete type.
-
close
public void close()
Description copied from interface:SolrCache
Frees any non-memory resources
-
getName
public String getName()
Description copied from interface:SolrInfoBean
Simple common usage name, e.g. BasicQueryHandler, or fully qualified class name.- Specified by:
getName
in interfaceSolrInfoBean
-
getDescription
public String getDescription()
Description copied from interface:SolrInfoBean
Simple one or two line description- Specified by:
getDescription
in interfaceSolrInfoBean
-
getCategory
public SolrInfoBean.Category getCategory()
Description copied from interface:SolrInfoBean
Category of this component- Specified by:
getCategory
in interfaceSolrInfoBean
-
initializeMetrics
public void initializeMetrics(SolrMetricManager manager, String registryName, String tag, String scope)
Description copied from interface:SolrMetricProducer
Initializes metrics specific to this producer- Specified by:
initializeMetrics
in interfaceSolrMetricProducer
- Parameters:
manager
- an instance ofSolrMetricManager
registryName
- registry name where metrics are registeredtag
- a symbolic tag that represents this instance of the producer, or a group of related instances that have the same life-cycle. This tag is used when managing life-cycle of some metrics and is set whenSolrMetricProducer.initializeMetrics(SolrMetricManager, String, String, String)
is called.scope
- scope of the metrics (eg. handler name) to separate metrics of
-
getMetricNames
public Set<String> getMetricNames()
Description copied from interface:SolrInfoBean
Modifiable 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:
getMetricNames
in interfaceSolrInfoBean
-
getMetricRegistry
public com.codahale.metrics.MetricRegistry getMetricRegistry()
Description copied from interface:SolrInfoBean
An instance ofMetricRegistry
that this component uses for metrics reporting (default is null, which means no registry).- Specified by:
getMetricRegistry
in interfaceSolrInfoBean
-
-