Uses of Class
org.apache.solr.search.SolrIndexSearcher

Packages that use SolrIndexSearcher
org.apache.solr.core   
org.apache.solr.handler   
org.apache.solr.request   
org.apache.solr.search   
org.apache.solr.spelling   
org.apache.solr.update   
org.apache.solr.util   
 

Uses of SolrIndexSearcher in org.apache.solr.core
 

Methods in org.apache.solr.core that return SolrIndexSearcher
 SolrIndexSearcher SolrCore.newSearcher(String name)
           
 SolrIndexSearcher SolrCore.newSearcher(String name, boolean readOnly)
           
 

Methods in org.apache.solr.core that return types with arguments of type SolrIndexSearcher
 RefCounted<SolrIndexSearcher> SolrCore.getNewestSearcher(boolean openNew)
          Return the newest RefCounted<SolrIndexSearcher> with the reference count incremented.
 RefCounted<SolrIndexSearcher> SolrCore.getSearcher()
          Return a registered RefCounted<SolrIndexSearcher> with the reference count incremented.
 RefCounted<SolrIndexSearcher> SolrCore.getSearcher(boolean forceNew, boolean returnSearcher, Future[] waitSearcher)
          Get a SolrIndexSearcher or start the process of creating a new one.
 

Methods in org.apache.solr.core with parameters of type SolrIndexSearcher
 void SolrEventListener.newSearcher(SolrIndexSearcher newSearcher, SolrIndexSearcher currentSearcher)
          The searchers passed here are only guaranteed to be valid for the duration of this method call, so care should be taken not to spawn threads or asynchronous tasks with references to these searchers.
 

Uses of SolrIndexSearcher in org.apache.solr.handler
 

Constructors in org.apache.solr.handler with parameters of type SolrIndexSearcher
MoreLikeThisHandler.MoreLikeThisHelper(SolrParams params, SolrIndexSearcher searcher)
           
 

Uses of SolrIndexSearcher in org.apache.solr.request
 

Fields in org.apache.solr.request declared as SolrIndexSearcher
protected  SolrIndexSearcher SimpleFacets.searcher
          Searcher to use for all calculations
 

Fields in org.apache.solr.request with type parameters of type SolrIndexSearcher
protected  RefCounted<SolrIndexSearcher> SolrQueryRequestBase.searcherHolder
           
 

Methods in org.apache.solr.request that return SolrIndexSearcher
 SolrIndexSearcher SolrQueryRequestBase.getSearcher()
           
 SolrIndexSearcher SolrQueryRequest.getSearcher()
          The index searcher associated with this request
 

Methods in org.apache.solr.request with parameters of type SolrIndexSearcher
 NamedList SimpleFacets.getFacetTermEnumCounts(SolrIndexSearcher searcher, DocSet docs, String field, int offset, int limit, int mincount, boolean missing, boolean sort, String prefix)
          Returns a list of terms in the specified field along with the corresponding count of documents in the set that match that constraint.
static NamedList SimpleFacets.getFieldCacheCounts(SolrIndexSearcher searcher, DocSet docs, String fieldName, int offset, int limit, int mincount, boolean missing, boolean sort, String prefix)
          Use the Lucene FieldCache to get counts for each unique field value in docs.
static int SimpleFacets.getFieldMissingCount(SolrIndexSearcher searcher, DocSet docs, String fieldName)
          Returns a count of the documents in the set which do not have any terms for for the specified field.
 

Uses of SolrIndexSearcher in org.apache.solr.search
 

Methods in org.apache.solr.search with parameters of type SolrIndexSearcher
 boolean CacheRegenerator.regenerateItem(SolrIndexSearcher newSearcher, SolrCache newCache, SolrCache oldCache, Object oldKey, Object oldVal)
          Regenerate an old cache item and insert it into newCache
 void SolrIndexSearcher.warm(SolrIndexSearcher old)
          Warm this searcher based on an old one (primarily for auto-cache warming).
 void SolrCache.warm(SolrIndexSearcher searcher, SolrCache old)
          Warm this cache associated with searcher using the old cache object.
 void LRUCache.warm(SolrIndexSearcher searcher, SolrCache old)
           
 

Uses of SolrIndexSearcher in org.apache.solr.spelling
 

Methods in org.apache.solr.spelling with parameters of type SolrIndexSearcher
abstract  void SolrSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
          (re)Builds the spelling index.
 void IndexBasedSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
 void FileBasedSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
 

Uses of SolrIndexSearcher in org.apache.solr.update
 

Fields in org.apache.solr.update declared as SolrIndexSearcher
protected  SolrIndexSearcher DirectUpdateHandler2.searcher
           
 

Uses of SolrIndexSearcher in org.apache.solr.util
 

Methods in org.apache.solr.util with parameters of type SolrIndexSearcher
static DocList SolrPluginUtils.doSimpleQuery(String sreq, SolrIndexSearcher searcher, IndexSchema schema, int start, int limit)
          Executes a basic query in lucene syntax
static NamedList SolrPluginUtils.getExplainList(Query query, DocList docs, SolrIndexSearcher searcher, IndexSchema schema)
          Generates an list of Explanations for each item in a list of docs.
static int SolrPluginUtils.numDocs(SolrIndexSearcher s, Query q, Query f)
          SolrIndexSearch.numDocs(Query,Query) freaks out if the filtering query is null, so we use this workarround.
 boolean SolrPluginUtils.IdentityRegenerator.regenerateItem(SolrIndexSearcher newSearcher, SolrCache newCache, SolrCache oldCache, Object oldKey, Object oldVal)
           
 



Copyright © 2008 Apache Software Foundation. All Rights Reserved.