在solr中总结一个字段

时间:2013-04-08 19:52:58

标签: solr sum aggregate-functions

我有一个带字段的Solr索引:

STR(k_id)
STR(k_pid)
INT(k_count) >= 1

我想要一个实现此目的的查询:

SELECT k_pid, SUM(k_count) FROM index GROUP BY k_pid

如何在k_count字段上执行求和操作?感谢任何帮助。

http://<myhost>:<port>/solr/collection2/select?q=*:*&debugQuery=true&fl=mk_pid,mk_id,mk_count&group=true&group.field=mk_pid

1 个答案:

答案 0 :(得分:4)

您无法使用字段折叠(组)功能执行总和操作 为此目的使用stats组件:http://wiki.apache.org/solr/StatsComponent