public class TermVectorComponent extends SearchComponent implements SolrCoreAware
Info available: term, frequency, position, offset, payloads, IDF.
Note Returning IDF can be expensive.
<searchComponent name="tvComponent" class="solr.TermVectorComponent"/> <requestHandler name="/terms" class="solr.SearchHandler"> <lst name="defaults"> <bool name="tv">true</bool> </lst> <arr name="last-component"> <str>tvComponent</str> </arr> </requestHandler>
SolrInfoMBean.Category, SolrInfoMBean.Group
Modifier and Type | Field and Description |
---|---|
static String |
COMPONENT_NAME |
protected NamedList |
initParams |
static String |
TERM_VECTORS |
standard_components
Constructor and Description |
---|
TermVectorComponent() |
Modifier and Type | Method and Description |
---|---|
void |
finishStage(ResponseBuilder rb)
Called after all responses have been received for this stage.
|
SolrInfoMBean.Category |
getCategory()
Purpose of this Class
|
String |
getDescription()
Simple one or two line description
|
void |
inform(SolrCore core) |
void |
init(NamedList args) |
void |
modifyRequest(ResponseBuilder rb,
SearchComponent who,
ShardRequest sreq)
Called after another component adds a request
|
void |
prepare(ResponseBuilder rb)
Prepare the response.
|
void |
process(ResponseBuilder rb)
Process the request for this component
|
distributedProcess, getDocs, getName, getSource, getStatistics, getVersion, handleResponses, setName
public static final String COMPONENT_NAME
public static final String TERM_VECTORS
protected NamedList initParams
public void process(ResponseBuilder rb) throws IOException
SearchComponent
process
in class SearchComponent
rb
- The ResponseBuilder
IOException
- If there is a low-level I/O error.public void prepare(ResponseBuilder rb) throws IOException
SearchComponent
SearchComponent.process(org.apache.solr.handler.component.ResponseBuilder)
method.
Called for every incoming request.
The place to do initialization that is request dependent.prepare
in class SearchComponent
rb
- The ResponseBuilder
IOException
- If there is a low-level I/O error.public void finishStage(ResponseBuilder rb)
SearchComponent
finishStage
in class SearchComponent
public void modifyRequest(ResponseBuilder rb, SearchComponent who, ShardRequest sreq)
SearchComponent
modifyRequest
in class SearchComponent
public void init(NamedList args)
init
in interface NamedListInitializedPlugin
init
in class SearchComponent
public void inform(SolrCore core)
inform
in interface SolrCoreAware
public String getDescription()
SolrInfoMBean
getDescription
in interface SolrInfoMBean
getDescription
in class SearchComponent
public SolrInfoMBean.Category getCategory()
SolrInfoMBean
getCategory
in interface SolrInfoMBean
getCategory
in class SearchComponent
Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.