我需要每年按公司分组结果。 我试过下面的查询:
http://localhost:8080/solr/select?q=&fq=status_created_at:[2011-12-31T4:00:00Z TO 2016-04-13T4:00:00Z] AND -company:(20 26 27 536)&facet=true&facet.field=company&facet.date=status_created_at&facet.date.start=2012-01-01T4:00:00Z&facet.date.end=2016-4-12T4:00:00Z&facet.date.gap=+1MONTH&fl=id&wt=json&rows=0&start=0&defType=dismax&qf=text
我希望结果像这样返回
{ 2015: {"1":123, "2":412}, 2014: {"1":123, "2":412}, }
但是查询没有给出预期的结果。我了解我的要求是组合Grouping
+ Faceting
,但不知道如何微调查询。
帮我解决这个问题。