Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a large index of files. One of the fields I have is "content_type". This field stores the basic type for a file (i.e. pdf, image, video, document, spreadsheet, etc).

I'm running a search on files names (my "title" field). How can I structure the query so that it returns only a certain amount of each type?

For example, say I have 1000 files with the word "work" in the title. I want to search for "work" in the title, but I want 5 results from each "content_type" returned first. (assuming that each specific content_type has 5 or more items). So on my search results page I can say:

1,000 items were found for "work"

Then I start listing listing the items, 5 for each type.

Can anyone help me build a query that will do this? I'm pretty new to Solr, but I'm hoping this can be done.

share|improve this question

1 Answer

up vote 1 down vote accepted

Seems basically you want to limit and group the results per content type.

Check out the Solr field Collapsing and grouping feature

This will help you to group the results per content type using group.field=content_type
The number of results in a group can be limited by group.limit=5 For the complete list of options refer to the link above.

And you can use the normal query parameters to search the results i.e. q=work

This feature is only available from the Solr 3.3 build.

share|improve this answer
Thanks for the help. This is what I'm looking for! – user463604 Oct 15 '11 at 15:06

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.