public interface SolrRequestHandler extends SolrInfoBean
SolrRequestHandler
are called to handle query requests.
Different SolrRequestHandler
s are registered with the SolrCore
.
One way to register a SolrRequestHandler with the core is thorugh the solrconfig.xml
file.
Example solrconfig.xml
entry to register a SolrRequestHandler
implementation to
handle all queries with a Request Handler of "/test":
<requestHandler name="/test" class="solr.tst.TestRequestHandler" />
A single instance of any registered SolrRequestHandler is created via the default constructor and is reused for all relevant queries.
SolrInfoBean.Category, SolrInfoBean.Group
Modifier and Type | Method and Description |
---|---|
void |
handleRequest(SolrQueryRequest req,
SolrQueryResponse rsp)
Handles a query request, this method must be thread safe.
|
void |
init(NamedList args)
init will be called just once, immediately after creation. |
getCategory, getDescription, getMetricNames, getMetricRegistry, getMetricsSnapshot, getName, registerMetricName
static final String TYPE
void init(NamedList args)
init
will be called just once, immediately after creation.
The args are user-level initialization parameters that may be specified when declaring a request handler in solrconfig.xml
void handleRequest(SolrQueryRequest req, SolrQueryResponse rsp)
Information about the request may be obtained from req
and
response information may be set using rsp
.
There are no mandatory actions that handleRequest must perform. An empty handleRequest implementation would fulfill all interface obligations.
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.