We are using two solrs to index the files. Sometimes one article is indexed in both solrs because we do update. It cause a problem that the facet counts are not correct due to these duplicated articles. How can I de-duplicate the counts?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
My advise would be not to keep duplicated articles. So you need a method to identify this duplicates articles and deleted it form one SOLR. If you don't want to delete duplicate articles you still need to keep track of them. Knowing which articles from SOLR1 are duplicates in SOLR2 will help you de-duplicate the counts like this:
In this situation the facet IsDuplicateField will retrieve all the articles that are duplicated and match your query. Good luck ! |
|||
|