Package org.opencms.search.solr
Class CmsSolrIndexWriter
java.lang.Object
org.opencms.search.solr.CmsSolrIndexWriter
- All Implemented Interfaces:
I_CmsIndexWriter
,I_CmsSolrIndexWriter
Implements the index writer for the Solr server used by OpenCms.
- Since:
- 8.5.0
-
Field Summary
Modifier and TypeFieldDescriptionprotected static final org.apache.commons.logging.Log
The log object for this class. -
Constructor Summary
ConstructorDescriptionCmsSolrIndexWriter
(org.apache.solr.client.solrj.SolrClient client) Constructor to create a Solr index writer.CmsSolrIndexWriter
(org.apache.solr.client.solrj.SolrClient client, CmsSolrIndex index) Creates a new index writer based on the provided standard Lucene IndexWriter for the provided OpenCms search index instance. -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close this IndexWriter.void
commit()
Commit all previous operations.void
Deletes all documents of the index belonging to this index writer.void
deleteDocument
(CmsPublishedResource resource) Delete a document from the index.void
optimize()
Optimizes the index.void
updateDocument
(String rootPath, I_CmsSearchDocument document) Update a document in the index.void
updateDocument
(I_CmsSearchDocument searchDocument) Updates a search document without removing it beforehand.
-
Field Details
-
LOG
The log object for this class.
-
-
Constructor Details
-
CmsSolrIndexWriter
Constructor to create a Solr index writer.- Parameters:
client
- the client to use
-
CmsSolrIndexWriter
Creates a new index writer based on the provided standard Lucene IndexWriter for the provided OpenCms search index instance.The OpenCms search instance is currently used only for improved logging of the index operations.
- Parameters:
client
- the standard Lucene IndexWriter to use as delegateindex
- the OpenCms search index instance this writer to supposed to write to
-
-
Method Details
-
close
Description copied from interface:I_CmsIndexWriter
Close this IndexWriter.- Specified by:
close
in interfaceI_CmsIndexWriter
- See Also:
-
commit
Description copied from interface:I_CmsIndexWriter
Commit all previous operations.- Specified by:
commit
in interfaceI_CmsIndexWriter
- Throws:
IOException
- thrown if the commit action fails.- See Also:
-
deleteAllDocuments
Description copied from interface:I_CmsSolrIndexWriter
Deletes all documents of the index belonging to this index writer.- Specified by:
deleteAllDocuments
in interfaceI_CmsSolrIndexWriter
- Throws:
IOException
- if something goes wrong- See Also:
-
deleteDocument
Description copied from interface:I_CmsIndexWriter
Delete a document from the index.- Specified by:
deleteDocument
in interfaceI_CmsIndexWriter
- Parameters:
resource
- the resource to delete- Throws:
IOException
- in case something goes wrong- See Also:
-
optimize
Description copied from interface:I_CmsIndexWriter
Optimizes the index.Please note that as of Lucene 3.5, the direct use of optimize is discouraged as Lucene apparently is now able to manage the file structure so efficiently that frequent optimizations are not longer required.
- Specified by:
optimize
in interfaceI_CmsIndexWriter
- See Also:
-
updateDocument
Updates a search document without removing it beforehand. Use for migration purposes only.- Parameters:
searchDocument
- the search document.- Throws:
IOException
- if the update fails
-
updateDocument
Description copied from interface:I_CmsIndexWriter
Update a document in the index.- Specified by:
updateDocument
in interfaceI_CmsIndexWriter
- Parameters:
rootPath
- the root path of the document to updatedocument
- the document to update- Throws:
IOException
- in case something goes wrong- See Also:
-