public abstract class SolrQueryRequestBase extends Object implements SolrQueryRequest
SolrQueryRequest
that provides some
convenience methods for accessing parameters, and manages an IndexSearcher
reference.
The close()
method must be called on any instance of this
class once it is no longer in use.
Modifier and Type | Field and Description |
---|---|
protected Map<Object,Object> |
context |
protected SolrCore |
core |
protected SolrParams |
origParams |
protected SolrParams |
params |
protected IndexSchema |
schema |
protected RefCounted<SolrIndexSearcher> |
searcherHolder |
protected long |
startTime |
protected Iterable<ContentStream> |
streams |
Constructor and Description |
---|
SolrQueryRequestBase(SolrCore core,
SolrParams params) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Frees resources associated with this request, this method must
be called when the object is no longer in use.
|
Iterable<ContentStream> |
getContentStreams()
A Collection of ContentStreams passed to the request
|
Map<Object,Object> |
getContext()
Generic information associated with this request that may be both read and updated.
|
SolrCore |
getCore()
The solr core (coordinator, etc) associated with this request
|
SolrParams |
getOriginalParams()
Returns the original request parameters.
|
SolrParams |
getParams()
returns the current request parameters
|
String |
getParamString()
Returns a string representing all the important parameters.
|
IndexSchema |
getSchema()
The schema snapshot from core.getLatestSchema() at request creation.
|
SolrIndexSearcher |
getSearcher()
The index searcher associated with this request
|
long |
getStartTime()
The start time of this request in milliseconds
|
void |
setContentStreams(Iterable<ContentStream> s) |
void |
setParams(SolrParams params)
Change the parameters for this request.
|
String |
toString() |
void |
updateSchemaToLatest()
Replaces the current schema snapshot with the latest from the core.
|
protected final SolrCore core
protected final SolrParams origParams
protected volatile IndexSchema schema
protected SolrParams params
protected Iterable<ContentStream> streams
protected final long startTime
protected RefCounted<SolrIndexSearcher> searcherHolder
public SolrQueryRequestBase(SolrCore core, SolrParams params)
public Map<Object,Object> getContext()
SolrQueryRequest
getContext
in interface SolrQueryRequest
public SolrParams getParams()
SolrQueryRequest
getParams
in interface SolrQueryRequest
public SolrParams getOriginalParams()
SolrQueryRequest
getOriginalParams
in interface SolrQueryRequest
public void setParams(SolrParams params)
SolrQueryRequest
setParams
in interface SolrQueryRequest
public long getStartTime()
SolrQueryRequest
getStartTime
in interface SolrQueryRequest
public SolrIndexSearcher getSearcher()
SolrQueryRequest
getSearcher
in interface SolrQueryRequest
public SolrCore getCore()
SolrQueryRequest
getCore
in interface SolrQueryRequest
public IndexSchema getSchema()
SolrQueryRequest
getSchema
in interface SolrQueryRequest
public void updateSchemaToLatest()
SolrQueryRequest
updateSchemaToLatest
in interface SolrQueryRequest
public void close()
close
in interface SolrQueryRequest
public Iterable<ContentStream> getContentStreams()
getContentStreams
in interface SolrQueryRequest
public void setContentStreams(Iterable<ContentStream> s)
public String getParamString()
SolrQueryRequest
getParamString
in interface SolrQueryRequest
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.