Is there a way on solr 1.4.1 to delete and rebuild the index for a set of records on certain condition as a transaction and do commit at the end of the transaction. Currently we do a deletebyquery first and then call the index to rebuild the set of records again. Since the delete happens we get problems on the frontend as the records displayed start missing suddenly. Thanks for all your help
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
commitafter thedeleteByQuery. This way, documents will still be visible until theDataImportHandlercommits. – jpountz Sep 1 '11 at 17:01