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.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 UnInvertedField.getCounts(SolrIndexSearcher searcher, DocSet baseDocs, int offset, int limit, Integer mincount, boolean missing, String sort, String prefix)
           
 NamedList SimpleFacets.getFacetTermEnumCounts(SolrIndexSearcher searcher, DocSet docs, String field, int offset, int limit, int mincount, boolean missing, String 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, String 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.
 StatsValues UnInvertedField.getStats(SolrIndexSearcher searcher, DocSet baseDocs, String[] facet)
          Collect statistics about the UninvertedField.
static UnInvertedField UnInvertedField.getUnInvertedField(String field, SolrIndexSearcher searcher)
           
 

Constructors in org.apache.solr.request with parameters of type SolrIndexSearcher
UnInvertedField(String field, SolrIndexSearcher searcher)
           
 

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 FastLRUCache.warm(SolrIndexSearcher searcher, SolrCache old)
           
 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
 void IndexBasedSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
 void FileBasedSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
           
abstract  void SolrSpellChecker.build(SolrCore core, SolrIndexSearcher searcher)
          (re)Builds the spelling index.
 

Uses of SolrIndexSearcher in org.apache.solr.util
 

Methods in org.apache.solr.util with parameters of type SolrIndexSearcher
static SolrDocumentList SolrPluginUtils.docListToSolrDocumentList(DocList docs, SolrIndexSearcher searcher, Set<String> fields, Map<SolrDocument,Integer> ids)
          Convert a DocList to a SolrDocumentList The optional param "ids" is populated with the lucene document id for each SolrDocument.
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 © 2010 Apache Software Foundation. All Rights Reserved.