I am using solr 4.0 and have the following query :
http://localhost:8987/solr/select/?q=priority%3A*&version=2.2&start=0&rows=0&indent=on&facet=on&facet.field=priority&facet.mincount=1
This returns the following :
<lst name="priority">
<int name="67JP 0041952">1</int>
<int name="67SU 1140793">1</int>
<int name="69SU 1328511">1</int>
<int name="AU 2007 242957">2</int>
<int name="AU 2008 201480">1</int>
<int name="CN 1993 103001">3</int>
<int name="CN 1997 106616">1</int>
</lst>
The field priority is multivalued. Now what i want to achieve is to get the total counts from the result returned after faceting i.e. 10. Is it possible to do?
To get the total count of the facets you need to check SOLR-2242
The fix version is Solr 4.0, so this should be available in the Current build.