You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
due to the incremental updates indexer we might keep old documents in the lucene index. This is good for on-going updates of the index, and we don't need throw away the complete index.
In order to delete from our SMART CSW we should consider add delete single Document from lucene via api call instead of the refreshCatalogue call.
due to the incremental updates indexer we might keep old documents in the lucene index. This is good for on-going updates of the index, and we don't need throw away the complete index.
In order to delete from our SMART CSW we should consider add delete single Document from lucene via api call instead of the refreshCatalogue call.
lucene docs: https://lucene.apache.org/core/4_0_0/core/org/apache/lucene/index/IndexWriter.html#deleteDocuments(org.apache.lucene.index.Term)
deleteDocuments(Term) respectively deleteDocuments(new Term("id",id))
The text was updated successfully, but these errors were encountered: