Package | Description |
---|---|
org.apache.solr.handler |
Concrete implementations of
SolrRequestHandler |
org.apache.solr.handler.component |
SearchComponent implementations for
use in SearchHandler |
org.apache.solr.highlight |
SolrHighlighter API and related implementations and utilities |
org.apache.solr.response |
API and implementations of
QueryResponseWriter for formatting Solr request responses |
org.apache.solr.search |
APIs and classes for parsing and processing search requests
|
org.apache.solr.util |
Common utility classes used throughout Solr
|
Modifier and Type | Method and Description |
---|---|
NamedList<BooleanQuery> |
MoreLikeThisHandler.MoreLikeThisHelper.getMoreLikeTheseQuery(DocList docs) |
Modifier and Type | Method and 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) |
Modifier and Type | Method and Description |
---|---|
NamedList<Object> |
UnifiedSolrHighlighter.doHighlighting(DocList docs,
Query query,
SolrQueryRequest req,
String[] defaultFields) |
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.
|
protected int[] |
UnifiedSolrHighlighter.toDocIDs(DocList docs)
Converts solr's DocList to the int[] docIDs
|
Modifier and Type | Method and Description |
---|---|
DocList |
BasicResultContext.getDocList() |
abstract DocList |
ResultContext.getDocList() |
Constructor and Description |
---|
BasicResultContext(DocList docList,
ReturnFields returnFields,
SolrIndexSearcher searcher,
Query query,
SolrQueryRequest req) |
BasicResultContext(ResponseBuilder rb,
DocList docList) |
Modifier and Type | Class and Description |
---|---|
class |
DocSlice
DocSlice implements DocList as an array of docids and optional scores. |
Modifier and Type | Field and Description |
---|---|
DocList |
DocListAndSet.docList |
DocList |
Grouping.mainResult |
Modifier and Type | Method and Description |
---|---|
protected DocList |
Grouping.Command.createSimpleResponse() |
DocList |
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 . |
DocList |
DocSlice.subset(int offset,
int len) |
DocList |
DocList.subset(int offset,
int len)
Get a subset of an existing DocList.
|
Modifier and Type | Method and Description |
---|---|
void |
QueryResult.setDocList(DocList list) |
Modifier and Type | Method and Description |
---|---|
static DocList |
SolrPluginUtils.doSimpleQuery(String sreq,
SolrQueryRequest req,
int start,
int limit)
Executes a basic query
|
Modifier and Type | Method and Description |
---|---|
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 void |
SolrPluginUtils.doStandardResultsDebug(SolrQueryRequest req,
Query query,
DocList results,
boolean dbgResults,
NamedList dbg) |
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-2019 Apache Software Foundation. All Rights Reserved.