Hello,

how I can get count of distinct facet_fields ?

like numFacetFound in this example:

http://localhost:8983/solr/select?q=xxx&rows=0&facet=true&facet.limit=10&facet.field=county

<response>
<responseHeader><status>0</status><QTime>2</QTime></responseHeader>
<result numFound="10" start="0"/>
<lst name="facet_counts">
 <lst name="facet_queries"/>
 <lst name="facet_fields">
  <lst name="county" numFacetFound="4" >
        <int name="Prague">3</int>
        <int name="Berlin">1</int>
        <int name="Amsterdam">1</int>
        <int name="Madrid">5</int>
  </lst>
 </lst>
</lst>
</response>

Thanks
-- 
View this message in context: 
http://www.nabble.com/Count-of-facet-count-tp16678811p16678811.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to