Uses of Interface
org.apache.solr.search.DocList
-
Packages that use DocList Package Description org.apache.solr.handler Concrete implementations ofSolrRequestHandlerorg.apache.solr.handler.component SearchComponentimplementations for use inSearchHandlerorg.apache.solr.highlight SolrHighlighterAPI and related implementations and utilitiesorg.apache.solr.response API and implementations ofQueryResponseWriterfor 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
Methods in org.apache.solr.handler with parameters of type DocList Modifier and Type Method Description NamedList<org.apache.lucene.search.BooleanQuery>MoreLikeThisHandler.MoreLikeThisHelper. getMoreLikeTheseQuery(DocList docs) -
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 voidResponseLogComponent. processIds(ResponseBuilder rb, DocList dl, IndexSchema schema, SolrIndexSearcher searcher)protected voidResponseLogComponent. 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 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 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.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 DocListBasicResultContext. getDocList()abstract DocListResultContext. 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 classDocSliceDocSliceimplements DocList as an array of docids and optional scores.Fields in org.apache.solr.search declared as DocList Modifier and Type Field Description DocListDocListAndSet. docListDocListGrouping. mainResultMethods in org.apache.solr.search that return DocList Modifier and Type Method Description protected DocListGrouping.Command. createSimpleResponse()protected DocListGrouping.Command. getDocList(org.apache.lucene.search.grouping.GroupDocs groups)DocListQueryResult. getDocList()DocListSolrIndexSearcher. 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 bothqueryand the intersection of thefilterList, sorted bysort.DocListSolrIndexSearcher. 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 bothqueryandfilterand sorted bysort.DocListSolrIndexSearcher. getDocList(org.apache.lucene.search.Query query, DocSet filter, org.apache.lucene.search.Sort lsort, int offset, int len)Returns documents matching bothqueryandfilterand sorted bysort.DocListDocList. subset(int offset, int len)Get a subset of an existing DocList.DocListDocSlice. subset(int offset, int len)Methods in org.apache.solr.search with parameters of type DocList Modifier and Type Method Description voidQueryResult. setDocList(DocList list) -
Uses of DocList in org.apache.solr.util
Methods in org.apache.solr.util that return DocList Modifier and Type Method Description static DocListSolrPluginUtils. 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 NamedListSolrPluginUtils. 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 voidSolrPluginUtils. doStandardResultsDebug(SolrQueryRequest req, org.apache.lucene.search.Query query, DocList results, boolean dbgResults, NamedList dbg)static 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 voidSolrPluginUtils. 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.
-