I'm playing around with a Solr-powered search for my webapp, and I figured it'd be best to use the DataImportHandler to handle syncing with the app via the database. I ...
I am implementing SOLR for a free text search for a project where the records available to be searched will need to be added and deleted on a large scale every ...
I am trying to delete a document by using a term in lucene index. but the code that I made below isn't working. are there any suggestion of how can I ...
I've read solr wiki and I know it is possible to use deletedPkQuery to remove the documents which deleted logically, but how to remove physically deleted documents with DataImportHandler?
We use Lucene to index some internal documents. Sometimes we need to remove documents. These documents have an unique id and are represented by a class DocItem as follows (ALL THE ...
To delete a document on Lucene, there is the function indexWriter.deleteDocuments(...) with Query and/or Terms.
That works fine.
However, I'd need to browse a collection of documents, and delete some of them based ...