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

I am using Solr to index documents from a wiki. Each document has a unique id, title, body content and some other fields.

Firstly, I wanted to know the declaration in the Solr schema to store the multivalued field "tags" to hold n of these strings, attached to the document. Each document can have a set of tags applied on it.

Second, the use case - how exactly would I retrieve all distinct tags across the entire Solr instance with number of occurences, so that I can build a tag cloud of most popular tags?

thanks Amit

share|improve this question
repeated question - stackoverflow.com/questions/33956/… – ajreal Nov 10 '10 at 16:02
@ajreal: not related at all – Mauricio Scheffer Nov 10 '10 at 16:09
@ajreal - I understand the straight faceting aspect, but the question here is about aggregation across the index, of a multivalued field, returning distinct occurences, with frequency of occurence – Amit Kothari Nov 10 '10 at 17:31
as pointed by @Mauricio Scheffer , facet might not related - for your scenario, assuming u have field status and tags (multiValued), u can try q=status:live&facet=true&facet.field=tags&facet.mincount=5.. what it does it basically look-up for document with status live, and return tags count (this tag count is based on results return by q), not sure is it closer to what u want – ajreal Nov 11 '10 at 4:58
if u looking for Hitcount, answer by @Mauricio Scheffer stackoverflow.com/questions/4143896/… is probably what u need – ajreal Nov 11 '10 at 5:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.