On Dec 22, 2010, at 09:21 , Jonathan Rochkind wrote: > This won't actually give you the number of distinct facet values, but will > give you the number of documents matching your conditions. It's more > equivalent to SQL without the "distinct". > > There is no way in Solr 1.4 to get the number of distinct facet values.
That's not true - the total number of facet values is the distinct number of values in that field. You need to be sure you have facet.limit=-1 (default is 100) to see all values in the response rather than just a page of them though. Erik