Re: Solr and Tag Cloud

2011-06-19 Thread Alexey Serba
Consider you have multivalued field _tag_ related to every document in your corpus. Then you can build tag cloud relevant for all data set or specific query by retrieving facets for field _tag_ for "*:*" or any other query. You'll get a list of popular _tag_ values relevant to this query with occur

Re: Solr and Tag Cloud

2011-06-18 Thread Dmitry Kan
One option would be to load each term into shingles field and then facet on them for the user query. Another is to use http://wiki.apache.org/solr/TermsComponent. With the first one you can load not only separate terms, but also their sequences and then experiment with the optimal shingle sequence

Re: Solr and Tag Cloud

2011-06-18 Thread Mohammad Shariq
I am also looking for the same, Is there any way to find the cloud-tag of all the documents matching a specific query. On 18 June 2011 09:42, Jamie Johnson wrote: > Does anyone have details of how to generate a tag cloud of popular terms > across an entire data set and then also across a query?