Uses of Interface
org.apache.solr.search.DocList
-
Packages that use DocList Package Description org.apache.solr.handler.component SearchComponent
implementations for use inSearchHandler
org.apache.solr.highlight SolrHighlighter
API and related implementations and utilitiesorg.apache.solr.response API and implementations ofQueryResponseWriter
for formatting Solr request responsesorg.apache.solr.search APIs and classes for parsing and processing search requestsorg.apache.solr.util Common utility classes used throughout Solr -
-
Uses of DocList in org.apache.solr.handler.component
Methods in org.apache.solr.handler.component with parameters of type DocList Modifier and Type Method Description protected void
ResponseLogComponent. processIds(ResponseBuilder rb, DocList dl, IndexSchema schema, SolrIndexSearcher searcher)
protected void
ResponseLogComponent. processScores(ResponseBuilder rb, DocList dl, IndexSchema schema, SolrIndexSearcher searcher)
-
Uses of DocList in org.apache.solr.highlight
Methods in org.apache.solr.highlight with parameters of type DocList Modifier and Type Method Description org.apache.solr.common.util.NamedList<Object>
DefaultSolrHighlighter. doHighlighting(DocList docs, org.apache.lucene.search.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 org.apache.solr.common.util.NamedList<Object>
SolrHighlighter. doHighlighting(DocList docs, org.apache.lucene.search.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.org.apache.solr.common.util.NamedList<Object>
UnifiedSolrHighlighter. doHighlighting(DocList docs, org.apache.lucene.search.Query query, SolrQueryRequest req, String[] defaultFields)
protected int[]
UnifiedSolrHighlighter. toDocIDs(DocList docs)
Converts solr's DocList to the int[] docIDs -
Uses of DocList in org.apache.solr.response
Methods in org.apache.solr.response that return DocList Modifier and Type Method Description DocList
BasicResultContext. getDocList()
abstract DocList
ResultContext. getDocList()
Constructors in org.apache.solr.response with parameters of type DocList Constructor Description BasicResultContext(ResponseBuilder rb, DocList docList)
BasicResultContext(DocList docList, ReturnFields returnFields, SolrIndexSearcher searcher, org.apache.lucene.search.Query query, SolrQueryRequest req)
-
Uses of DocList in org.apache.solr.search
Classes in org.apache.solr.search that implement DocList Modifier and Type Class Description class
DocSlice
DocSlice
implements DocList as an array of docids and optional scores.Fields in org.apache.solr.search declared as DocList Modifier and Type Field Description DocList
DocListAndSet. docList
DocList
Grouping. mainResult
Methods in org.apache.solr.search that return DocList Modifier and Type Method Description protected DocList
Grouping.Command. createSimpleResponse()
protected DocList
Grouping.Command. getDocList(org.apache.lucene.search.grouping.GroupDocs<?> groups)
DocList
QueryResult. getDocList()
DocList
SolrIndexSearcher. getDocList(org.apache.lucene.search.Query query, List<org.apache.lucene.search.Query> filterList, org.apache.lucene.search.Sort lsort, int offset, int len, int flags)
Returns documents matching bothquery
and the intersection of thefilterList
, sorted bysort
.DocList
SolrIndexSearcher. getDocList(org.apache.lucene.search.Query query, org.apache.lucene.search.Query filter, org.apache.lucene.search.Sort lsort, int offset, int len)
Returns documents matching bothquery
andfilter
and sorted bysort
.DocList
SolrIndexSearcher. getDocList(org.apache.lucene.search.Query query, DocSet filter, org.apache.lucene.search.Sort lsort, int offset, int len)
Returns documents matching bothquery
andfilter
and sorted bysort
.DocList
DocList. subset(int offset, int len)
Get a subset of an existing DocList.DocList
DocSlice. subset(int offset, int len)
Methods in org.apache.solr.search with parameters of type DocList Modifier and Type Method Description void
QueryResult. setDocList(DocList list)
Method parameters in org.apache.solr.search with type arguments of type DocList Modifier and Type Method Description protected void
Grouping.Command. addDocList(org.apache.solr.common.util.NamedList<? super DocList> rsp, org.apache.lucene.search.grouping.GroupDocs<?> groups)
-
Uses of DocList in org.apache.solr.util
Methods in org.apache.solr.util that return DocList Modifier and Type Method Description static DocList
SolrPluginUtils. doSimpleQuery(String sreq, SolrQueryRequest req, int start, int limit)
Executes a basic queryMethods in org.apache.solr.util with parameters of type DocList Modifier and Type Method Description static org.apache.solr.common.util.NamedList<Object>
SolrPluginUtils. doStandardDebug(SolrQueryRequest req, String userQuery, org.apache.lucene.search.Query query, DocList results, boolean dbgQuery, boolean dbgResults)
Returns a NamedList containing many "standard" pieces of debugging information.static void
SolrPluginUtils. doStandardResultsDebug(SolrQueryRequest req, org.apache.lucene.search.Query query, DocList results, boolean dbgResults, org.apache.solr.common.util.NamedList<Object> dbg)
static org.apache.solr.common.util.NamedList<org.apache.lucene.search.Explanation>
SolrPluginUtils. getExplanations(org.apache.lucene.search.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, org.apache.lucene.search.Query query, SolrQueryRequest req, SolrQueryResponse res)
Pre-fetch documents into the index searcher's document cache.
-