在我的项目中,我需要通过solr stats facet统计两个字段。我可以在统计数据字段中添加两个参数并同时统计它们吗?
答案 0 :(得分:1)
根据StatsComponent,您可以多次传递stats.field,以便在单个请求中接收所有内容,例如stats.field=price&stats.field=popularity
e.g. http://localhost:8983/solr/select?q=*:*&stats=true&stats.field=price&stats.field=popularity&rows=0&indent=true
您还可以传递多个构面字段,例如stats.facet=inStock&stats.facet=popularity