1
我正在努力尋找正確的語法,當我提交的查詢,如'總和收入男性組貓' 我使用DSE v 4.8。Solr數據堆棧企業搜索按列分組?
我有數據源設置,我可以從以下the tutorial
我試圖從here
curl http://localhost:8983/solr/nhanes_ks.nhanes/select -d 'q=gender:Male&wt=json&json.facet=
{
categories: {
type: terms,
field: cat,
facet: {
quality: "sum(monthly_income_total)"
}
}
}'
以下而且從here
curl http://localhost:8983/solr/nhanes_ks.nhanes/select -d 'q=gender:Male&wt=json&json.facet=
{
categories: {
terms:{
field: cat,
facet: {
quality: "sum(monthly_income_total)"
}
}
}
}'
下成功進行查詢
Solr報告爲4.1版本,這是Solr 5x僅支持的功能嗎? 如果不是DSE將升級Solr以在DSE 5x中支持此功能嗎?
從DSE他們說,Solr 5.5將在DSE 5.1中可用。 DSE 5將至少在2016年第3季度,所以我想我至少要等到明年才能玩這個:( – Mark