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
statusandtags(multiValued), u can tryq=status:live&facet=true&facet.field=tags&facet.mincount=5..what it does it basically look-up for document with status live, and returntagscount (this tag count is based on results return byq), not sure is it closer to what u want – ajreal Nov 11 '10 at 4:58