Re: Tag Cloud Generation Problem

2010-04-08 Thread Ninad Raut
Thanks it worked... with some innovations of my own. :) On Thu, Apr 8, 2010 at 2:25 PM, Markus Jelsma wrote: > Hi, > > > It's simpler than you might think :) > > ?q=*:*&facet=true&facet.field=buzzWord&rows=0 > > This will retrieve an overall facet count (useful for navigation and tag > cloud > g

Re: Tag Cloud Generation Problem

2010-04-08 Thread Markus Jelsma
Hi, It's simpler than you might think :) ?q=*:*&facet=true&facet.field=buzzWord&rows=0 This will retrieve an overall facet count (useful for navigation and tag cloud generation) but doesn't return the documents themselves. Check the facetting wiki [1] for more information. [1]: http://wiki

Re: Tag Cloud Generation Problem

2010-04-08 Thread Ninad Raut
Hi Markus, But the problem is, we donot know the words before hand. What will be the facet Query be? If you can just explain me with an example it would be really nice of you. Regards, Ninad R On Thu, Apr 8, 2010 at 2:09 PM, Markus Jelsma wrote: > The facetting engine can do this job. > > > >

Re: Tag Cloud Generation Problem

2010-04-08 Thread Markus Jelsma
The facetting engine can do this job. On Thursday 08 April 2010 10:16:09 Ninad Raut wrote: > Hi, > > I have a business use case where in I have to generate a tagcloud for words > with freequency greater than a specified threshold. > > The way I store records in solr is : > For every solr docum

Tag Cloud Generation Problem

2010-04-08 Thread Ninad Raut
Hi, I have a business use case where in I have to generate a tagcloud for words with freequency greater than a specified threshold. The way I store records in solr is : For every solr document (which includes content) I store mutlivalued entry of buzzwords with their frequency. The technical pr