0

在 2016 年 3 月的 Banana 版本中,Hits Panel 具有新的统计功能(如 min、max、mean、stddev 等),这比以前的单一计数功能非常有用。但是功能 count distinct 还不存在:-(

有人知道要在“module.js”文件中更新代码的哪一部分以添加“count distinct”吗?我使用的 Solr 版本是 4.4。

4

1 回答 1

0

有两部分需要更新:

  • module.js:附加&stats.calcdistinct=true到变量facets = '&stats=true&...'(取决于您的分支,在 #132 行附近)
  • editor.html:添加countDistinctpanel.mode选项数组,即f for f in ['count','max','min','sum','countDistinct']
于 2016-05-06T13:38:00.903 回答