Uses of Class
org.apache.solr.search.stats.StatsCache
-
Packages that use StatsCache Package Description org.apache.solr.core Core classes implementing Solr internals and the management ofSolrCore
sorg.apache.solr.search APIs and classes for parsing and processing search requestsorg.apache.solr.search.stats APIs and Classes implementing the Stats component used for document frequency calculations. -
-
Uses of StatsCache in org.apache.solr.core
Methods in org.apache.solr.core that return StatsCache Modifier and Type Method Description StatsCache
SolrCore. createStatsCache()
Create an instance ofStatsCache
using configured parameters. -
Uses of StatsCache in org.apache.solr.search
Methods in org.apache.solr.search that return StatsCache Modifier and Type Method Description StatsCache
SolrIndexSearcher. getStatsCache()
-
Uses of StatsCache in org.apache.solr.search.stats
Subclasses of StatsCache in org.apache.solr.search.stats Modifier and Type Class Description class
ExactSharedStatsCache
This class implements exact caching of statistics.class
ExactStatsCache
This class implements exact caching of statistics.class
LocalStatsCache
Default implementation that simply ignores global term statistics, and always uses local term statistics.class
LRUStatsCache
UnlikeExactStatsCache
this implementation preserves term stats across queries in a set of LRU caches (with the same life-cycle as SolrIndexSearcher), and based on surface features of a query it determines the need to send additional requests to retrieve local term and collection statistics from shards.
-