This seems to work from SolrJ now:

            ModifiableSolrParams params = new ModifiableSolrParams();
            params.set("qt", "/clustering");
            params.set("q", query);
            params.set("carrot.title", "filename_s");
           params.set("rows","100");
            params.set("clustering", "true");
            params.set("carrot.snippet", "excerpt_t");

The rows param needs to be a string I think.

thanks.

On Thu, 2010-07-22 at 19:10 -0400, Darren Govoni wrote:

> Yeah, my results count is 151 and only 21 documents appear in 6
> clusters.
> 
> This is true whether I use URL or SolrJ.
> 
> When I use carrot workbench and point to my Solr using local clustering,
> the workbench
> has numerous clusters and all documents are placed....
> 
> On Thu, 2010-07-22 at 18:06 +0200, Stanislaw Osinski wrote:
> 
> > Hi,
> > 
> > In my SolrJ, I used ModifiableSolrParams and I set ("rows",50) but it
> > > still returns less than 10 for each cluster.
> > >
> > 
> > Oh, the number of documents per cluster very much depends on the
> > characteristics of your documents, it often happens that the algorithms
> > create larger numbers of smaller clusters. However, all returned documents
> > should get assigned to some cluster(s), the Other Topics one in the worst
> > case. Does that hold in your case?
> > 
> > If you'd like to tune clustering a bit, you can try Carrot2 tools:
> > 
> > http://download.carrot2.org/stable/manual/#section.getting-started.solr
> > 
> > and then:
> > 
> > http://download.carrot2.org/stable/manual/#chapter.tuning
> > 
> > Cheers,
> > 
> > S.
> 
> 


Reply via email to