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

I have product index at solr, product has category field and I need to select one product (better would be random) from each category, how query would look like?

share|improve this question
if you would move that to answer, I would mark it as the right one ;) – Giedrius Aug 17 '11 at 9:48

1 Answer

up vote 3 down vote accepted

if you are looking for sql group by feature,
with solr 3.3 on-wards, it has the similar feature called FieldCollapsing

Field Collapsing collapses a group of results with the same field value down to a single (or fixed number) of entries. For example, most search engines such as Google collapse on site so only one or two entries are shown, along with a link to click to see more results from that site. Field collapsing can also be used to suppress duplicate documents.

share|improve this answer
I will just add regarding random - there's random type in solr, that helps to bring random results: lucene.apache.org/solr/api/org/apache/solr/schema/… – Giedrius Aug 17 '11 at 11:38
FieldCollapsing is not released in all recent versions of solr, please find more info here stackoverflow.com/questions/6455882/solr-field-collapsing and or course wiki.apache.org/solr/FieldCollapsing – Garytxo Aug 22 '11 at 7:42

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.