Class HighlightComponent
- java.lang.Object
-
- org.apache.solr.handler.component.SearchComponent
-
- org.apache.solr.handler.component.HighlightComponent
-
- All Implemented Interfaces:
SolrInfoBean,NamedListInitializedPlugin,PluginInfoInitialized,SolrCoreAware
public class HighlightComponent extends SearchComponent implements PluginInfoInitialized, SolrCoreAware
TODO!- Since:
- solr 1.3
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHighlightComponent.HighlightMethod-
Nested classes/interfaces inherited from interface org.apache.solr.core.SolrInfoBean
SolrInfoBean.Category, SolrInfoBean.Group
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOMPONENT_NAME-
Fields inherited from class org.apache.solr.handler.component.SearchComponent
metricNames, registry, standard_components
-
-
Constructor Summary
Constructors Constructor Description HighlightComponent()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected voidaddHighlights(Object[] objArr, Object obj, Map<Object,ShardDoc> resultIds)protected ObjectconvertHighlights(NamedList hl)voidfinishStage(ResponseBuilder rb)Called after all responses have been received for this stage.protected ObjectgetAllHighlights(Object[] objArr)SolrInfoBean.CategorygetCategory()Category of this componentStringgetDescription()Simple one or two line descriptionSolrHighlightergetHighlighter()Deprecated.protected SolrHighlightergetHighlighter(SolrParams params)static SolrHighlightergetHighlighter(SolrCore core)Deprecated.instead depend onprocess(ResponseBuilder)to choose the highlighter based onHighlightParams.METHODvoidhandleResponses(ResponseBuilder rb, ShardRequest sreq)Called after all responses for a single request were receivedprotected StringhighlightingResponseField()voidinform(SolrCore core)voidinit(PluginInfo info)voidmodifyRequest(ResponseBuilder rb, SearchComponent who, ShardRequest sreq)Called after another component adds a requestprotected Object[]newHighlightsArray(int size)voidprepare(ResponseBuilder rb)Prepare the response.voidprocess(ResponseBuilder rb)Process the request for this component-
Methods inherited from class org.apache.solr.handler.component.SearchComponent
distributedProcess, getMetricNames, getMetricRegistry, getName, init, setName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.solr.core.SolrInfoBean
getMetricsSnapshot, registerMetricName
-
-
-
-
Field Detail
-
COMPONENT_NAME
public static final String COMPONENT_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getHighlighter
@Deprecated public static SolrHighlighter getHighlighter(SolrCore core)
Deprecated.instead depend onprocess(ResponseBuilder)to choose the highlighter based onHighlightParams.METHOD
-
getHighlighter
@Deprecated public SolrHighlighter getHighlighter()
Deprecated.
-
init
public void init(PluginInfo info)
- Specified by:
initin interfacePluginInfoInitialized
-
prepare
public void prepare(ResponseBuilder rb) throws IOException
Description copied from class:SearchComponentPrepare the response. Guaranteed to be called before any SearchComponentSearchComponent.process(org.apache.solr.handler.component.ResponseBuilder)method. Called for every incoming request. The place to do initialization that is request dependent.- Specified by:
preparein classSearchComponent- Parameters:
rb- TheResponseBuilder- Throws:
IOException- If there is a low-level I/O error.
-
inform
public void inform(SolrCore core)
- Specified by:
informin interfaceSolrCoreAware
-
process
public void process(ResponseBuilder rb) throws IOException
Description copied from class:SearchComponentProcess the request for this component- Specified by:
processin classSearchComponent- Parameters:
rb- TheResponseBuilder- Throws:
IOException- If there is a low-level I/O error.
-
getHighlighter
protected SolrHighlighter getHighlighter(SolrParams params)
-
modifyRequest
public void modifyRequest(ResponseBuilder rb, SearchComponent who, ShardRequest sreq)
Description copied from class:SearchComponentCalled after another component adds a request- Overrides:
modifyRequestin classSearchComponent
-
handleResponses
public void handleResponses(ResponseBuilder rb, ShardRequest sreq)
Description copied from class:SearchComponentCalled after all responses for a single request were received- Overrides:
handleResponsesin classSearchComponent
-
finishStage
public void finishStage(ResponseBuilder rb)
Description copied from class:SearchComponentCalled after all responses have been received for this stage. Useful when different requests are sent to each shard.- Overrides:
finishStagein classSearchComponent
-
getDescription
public String getDescription()
Description copied from interface:SolrInfoBeanSimple one or two line description- Specified by:
getDescriptionin interfaceSolrInfoBean- Specified by:
getDescriptionin classSearchComponent
-
getCategory
public SolrInfoBean.Category getCategory()
Description copied from interface:SolrInfoBeanCategory of this component- Specified by:
getCategoryin interfaceSolrInfoBean- Overrides:
getCategoryin classSearchComponent
-
highlightingResponseField
protected String highlightingResponseField()
-
newHighlightsArray
protected Object[] newHighlightsArray(int size)
-
addHighlights
protected void addHighlights(Object[] objArr, Object obj, Map<Object,ShardDoc> resultIds)
-
-