Package | Description |
---|---|
org.bbaw.pdr.solr |
Implementations of read/write access to PDR's Apache Solr index.
|
Modifier and Type | Method and Description |
---|---|
static org.apache.solr.common.SolrInputDocument |
SolrInputDocumentFactory.createSolrInputDocument(PDRObject pdrObject)
Factory method for the creation of Solr input documents.
|
java.lang.Object |
SolrOptimize.execute() |
java.lang.Object |
SolrAddCollection.execute() |
java.lang.Object |
SolrDelete.execute() |
java.lang.Object |
SolrRollback.execute() |
java.lang.Object |
SolrAdd.execute() |
java.lang.String |
SolrHttpQuery.execute() |
java.lang.Object |
SolrCommit.execute() |
abstract T |
AbstractSolrCommand.execute()
Executes the implemented Solr command.
|
org.apache.solr.client.solrj.response.QueryResponse |
SolrPlainQuery.execute() |
Constructor and Description |
---|
AbstractSolrCommand()
Gets a reference to Solrj's server and provides it to subclassing commands.
|
SolrAdd(PDRObject pdrObject)
Constructor with PDR object.
|
SolrAddCollection(java.util.List<PDRObject> pdrObjects)
Constructor with a collection of PDR objects.
|
SolrCommit()
Constructor - no parameters needed here.
|
SolrDelete(java.lang.String query)
Constructor for deletion by provided Solr query string.
|
SolrHttpQuery(java.util.Map<java.lang.String,java.lang.String> parameters)
Forwards the provided query with its parameters to Solr's HTTP interface and returns
the response.
|
SolrOptimize()
Default construtor.
|
SolrPlainQuery(org.apache.solr.client.solrj.SolrQuery query)
Contructor with plan SolrQuery which will be executed.
|
SolrRollback()
Default construtor.
|