Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just went through solr wiki page for clustering. But i am not getting what is the benefit of using clustering. Can anyone tell me what is actually clusering and what its use in indexing and searching.

Please reply

share|improve this question

1 Answer

up vote 4 down vote accepted

Clustering is a statistical technique to group data in to groups 'which belong together'. In Solr specifically, this means that it will try to group the results for a certain query and label those groups.

This could give you additional information in the nature of the results returned. Example: if you search for 'Python' on a very broad set of documents, the clustering component might create groups for 'The Python programming language', 'Python the snake', etc.

Have a look at the Carrot2 demo site for a demo: (Carrot2 is the clustering engine shipped with Solr)

http://search.carrot2.org/stable/search

Solr's clustering components (Carrot2) clusters the documents using the text fields which are returned by Solr in a result list. (The fields used are configurable.) It uses the terms in the text field to build the clusters and label them.

There is a very interesting presentation on the Carrot2 website:

http://project.carrot2.org/publications/carrot2-dresden-2007.pdf

share|improve this answer
1  
And 'Monty Python' of course! – JanRavn Jun 29 '11 at 11:50
on what basis it will group the results. i mean how it labels the results – Romi Jun 29 '11 at 11:57
1  
Solr's clustering components (Carrot2) clusters the documents using the text fields which are returned by Solr in a result list. (The fields used are configurable.) It uses the terms in the text field to build the clusters and label them. There is a very interesting presentation on the Carrot2 website: project.carrot2.org/publications/carrot2-dresden-2007.pdf – JanRavn Jun 29 '11 at 15:38
will clustering effect indexes. and how can i use clusters to show in my search results. as i get <clusters> tag in my XML results. do i need to parse it to show in search results. – Romi Jun 30 '11 at 5:44
1  
It does not affect your indexes. The clusters are generated at query time. You can disable / enable / use the functionality at any time without changing your index. You will get the clusters in a <clusters> tag. This will contain the different clusters, a label for each cluster and then the list of document IDs belonging to the cluster. You will need to parse that. – JanRavn Jun 30 '11 at 13:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.