Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Mastering Apache Solr 7.x

You're reading from  Mastering Apache Solr 7.x

Product type Book
Published in Feb 2018
Publisher Packt
ISBN-13 9781788837385
Pages 308 pages
Edition 1st Edition
Languages
Authors (3):
Sandeep Nair Sandeep Nair
Profile icon Sandeep Nair
Chintan Mehta Chintan Mehta
Profile icon Chintan Mehta
Dharmesh Vasoya Dharmesh Vasoya
Profile icon Dharmesh Vasoya
View More author details

Result clustering


So far, we have seen Solr searching by the keyword used in search query. Result clustering is the advanced search component of Solr; it first identifies the similarities between documents, and using these similarities, it finds related documents. It is also not necessary for the identified similarities to be present in the query or document.

The clustering component first discovers the results of a search query and identifies similar terms or phrases found within the search results. A clustering algorithm discovers relationships across all the documents from the search result and forms in a meaningful cluster label. Solr comes with several algorithms for clustering implementation.

Result clustering parameters

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}

Parameter

Behavior

Default value

clustering

Enable/disable clustering.

true

clustering.engine

Specifies which clustering engine to use. If not specified, the first declared engine will become the default one.

first in a list

clustering.results

When true, the component will run...