Uses of Interface
org.apache.solr.search.DocList

Packages that use DocList
org.apache.solr.handler   
org.apache.solr.handler.clustering   
org.apache.solr.handler.clustering.carrot2   
org.apache.solr.highlight   
org.apache.solr.response   
org.apache.solr.search   
org.apache.solr.util   
 

Uses of DocList in org.apache.solr.handler
 

Methods in org.apache.solr.handler that return types with arguments of type DocList
 NamedList<DocList> MoreLikeThisHandler.MoreLikeThisHelper.getMoreLikeThese(DocList docs, int rows, int flags)
          Deprecated. 
 

Methods in org.apache.solr.handler with parameters of type DocList
 NamedList<DocList> MoreLikeThisHandler.MoreLikeThisHelper.getMoreLikeThese(DocList docs, int rows, int flags)
          Deprecated. 
 

Uses of DocList in org.apache.solr.handler.clustering
 

Methods in org.apache.solr.handler.clustering with parameters of type DocList
abstract  Object SearchClusteringEngine.cluster(Query query, DocList docList, SolrQueryRequest sreq)
          Deprecated. 
 SolrDocumentList SearchClusteringEngine.getSolrDocumentList(DocList docList, SolrQueryRequest sreq, Map<SolrDocument,Integer> docIds)
           
 

Uses of DocList in org.apache.solr.handler.clustering.carrot2
 

Methods in org.apache.solr.handler.clustering.carrot2 with parameters of type DocList
 Object CarrotClusteringEngine.cluster(Query query, DocList docList, SolrQueryRequest sreq)
          Deprecated. 
 

Uses of DocList in org.apache.solr.highlight
 

Methods in org.apache.solr.highlight with parameters of type DocList
 NamedList<Object> DefaultSolrHighlighter.doHighlighting(DocList docs, Query query, SolrQueryRequest req, String[] defaultFields)
          Generates a list of Highlighted query fragments for each item in a list of documents, or returns null if highlighting is disabled.
abstract  NamedList<Object> SolrHighlighter.doHighlighting(DocList docs, Query query, SolrQueryRequest req, String[] defaultFields)
          Generates a list of Highlighted query fragments for each item in a list of documents, or returns null if highlighting is disabled.
 

Uses of DocList in org.apache.solr.response
 

Fields in org.apache.solr.response declared as DocList
 DocList ResultContext.docs
           
 

Uses of DocList in org.apache.solr.search
 

Classes in org.apache.solr.search that implement DocList
 class DocSlice
          DocSlice implements DocList as an array of docids and optional scores.
 

Fields in org.apache.solr.search declared as DocList
 DocList DocListAndSet.docList
           
 DocList Grouping.mainResult
           
 

Methods in org.apache.solr.search that return DocList
protected  DocList Grouping.Command.createSimpleResponse()
           
 DocList SolrIndexSearcher.QueryResult.getDocList()
           
protected  DocList Grouping.Command.getDocList(GroupDocs groups)
           
 DocList SolrIndexSearcher.getDocList(Query query, DocSet filter, Sort lsort, int offset, int len)
          Returns documents matching both query and filter and sorted by sort.
 DocList SolrIndexSearcher.getDocList(Query query, List<Query> filterList, Sort lsort, int offset, int len, int flags)
          Returns documents matching both query and the intersection of the filterList, sorted by sort.
 DocList SolrIndexSearcher.getDocList(Query query, Query filter, Sort lsort, int offset, int len)
          Returns documents matching both query and filter and sorted by sort.
protected  DocList SolrIndexSearcher.sortDocSet(DocSet set, Sort sort, int nDocs)
           
 DocList DocSlice.subset(int offset, int len)
           
 DocList DocList.subset(int offset, int len)
          Get a subset of an existing DocList.
 

Methods in org.apache.solr.search with parameters of type DocList
 Document[] SolrIndexSearcher.readDocs(DocList ids)
          Takes a list of docs (the doc ids actually), and returns an array of Documents containing all of the stored fields.
 void SolrIndexSearcher.readDocs(Document[] docs, DocList ids)
          Takes a list of docs (the doc ids actually), and reads them into an array of Documents.
 void SolrIndexSearcher.readDocs(Document[] docs, DocList ids, Set<String> fields)
          Takes a list of docs (the doc ids actually) and a set of fields to load, and reads them into an array of Documents.
 void SolrIndexSearcher.QueryResult.setDocList(DocList list)
           
 

Uses of DocList in org.apache.solr.util
 

Methods in org.apache.solr.util that return DocList
static DocList SolrPluginUtils.doSimpleQuery(String sreq, SolrQueryRequest req, int start, int limit)
          Executes a basic query
 

Methods in org.apache.solr.util with parameters of type DocList
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 NamedList SolrPluginUtils.doStandardDebug(SolrQueryRequest req, String userQuery, Query query, DocList results, boolean dbgQuery, boolean dbgResults)
           Returns a NamedList containing many "standard" pieces of debugging information.
static NamedList<Explanation> SolrPluginUtils.getExplanations(Query query, DocList docs, SolrIndexSearcher searcher, IndexSchema schema)
          Generates an NamedList of Explanations for each item in a list of docs.
static void SolrPluginUtils.optimizePreFetchDocs(ResponseBuilder rb, DocList docs, Query query, SolrQueryRequest req, SolrQueryResponse res)
          Pre-fetch documents into the index searcher's document cache.
 



Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.