You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2009/12/14 10:48:56 UTC

[Solr Wiki] Update of "TermsComponent" by ShalinMangar

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "TermsComponent" page has been changed by ShalinMangar.
The comment on this change is: Added note on distributed setups.
http://wiki.apache.org/solr/TermsComponent?action=diff&rev1=19&rev2=20

--------------------------------------------------

   * terms.sort={count|index} - If count, sorts the terms by the term frequency (highest count first).  If index, returns the terms in index order.  Default is to sort by count.
  
  The output is a list of the terms and their document frequency values.
+ 
+ <<Anchor(distributed)>>
+ = Distributed Search Support =
+ 
+ <!> [[Solr1.5]]
+ 
+ TermsComponent now supports distributed setups. Assuming that you are using the "/terms" request handler, you should specify the following two parameters to make it work in a distributed setup:
+  * "shards" - See DistributedSearch
+  * "shards.qt" - Signals Solr that requests to shards should be sent to a request handler given by this parameter 
  
  = Examples =