Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by HossMan: http://wiki.apache.org/solr/SimpleFacetParameters ------------------------------------------------------------------------------ == facet.limit == - This param indicates the maximum number of constraint counts that should be returned for the facet fields. If a non blnk value is specified, the constraints (ie: Terms) will be sorted by the facet count (descending) and only the top N terms will be returned with their counts. + This param indicates the maximum number of constraint counts that should be returned for the facet fields. If a non-negative value is specified, the constraints (ie: Terms) will be sorted by the facet count (descending) and only the top N terms will be returned with their counts. A negative value will result in every constraint being returned, in no partiular order. - The default value is blank. + The default value is 100. This parameter can be specified on a per field basis to indicate a seperate limit for certain fields. @@ -63, +63 @@ == Facet Fields == - `http://localhost:8983/solr/select?q=ipod&rows=0&facet=true&facet.field=cat&facet.field=inStock` + `http://localhost:8983/solr/select?q=ipod&rows=0&facet=true&facet.limit=-1&facet.field=cat&facet.field=inStock` {{{ <response> @@ -101, +101 @@ == Facet Fields with No Zeros == - `http://localhost:8983/solr/select?q=ipod&rows=0&facet=true&facet.field=cat&facet.zeros=false&facet.field=inStock` + `http://localhost:8983/solr/select?q=ipod&rows=0&facet=true&facet.limit=-1&facet.field=cat&facet.zeros=false&facet.field=inStock` {{{ <response> @@ -127, +127 @@ == Facet Fields with No Zeros And Missing Count For One Field == - `http://localhost:8983/solr/select?q=ipod&rows=0&facet=true&facet.field=cat&f.cat.facet.missing=true&facet.zeros=false&facet.field=inStock` + `http://localhost:8983/solr/select?q=ipod&rows=0&facet=true&facet.limit=-1&facet.field=cat&f.cat.facet.missing=true&facet.zeros=false&facet.field=inStock` {{{ <response>
