: You can see all the results have 'credit report dispute' in the title. : Although they belong to different categories/states, it still looks : duplicate to the users. Can solr be made to not display the same result, if : a result with the same phrase in the 'title' has already been displayed?
typically issues related to "duplicate" documents are best dealt with when indexing -- if a document is a dup of another document, only add one of them to the index. But in this case, i get the sense that the documents aren't *really* duplicates ... they have a lot of fields in common yes, but if they were truely duplicates why would they have different values for some fields? (ie: the State which is also part of the URL) If I live in Florida, and I do a search on your site for credit report dispute forms, do you really want me to only see the form for Alaska (and nothing else) and assume you don't have anything useful for me so i go someplace else? if the forms are the same for every state, then index each of them only once -- if they are different, then make it more obvious to your users why they are different. -Hoss