Solr - Getting facet counts without returning search results

前端 未结 3 1429
逝去的感伤
逝去的感伤 2020-12-29 02:20

I need to return only the facet counts from solr. So I basically want to search over all documents and return the facet counts, but I don\'t want to return any search result

3条回答
  •  無奈伤痛
    2020-12-29 02:46

    Setting facet=true will enable faceting and setting rows=0 will prevent any results being returned. Conveniently the numFound will show you how many results were found.

提交回复
热议问题