我正在使用弹性搜索词方面,我的字段包含一些负值,但方面忽略了负号
以下是方面查询
http://myserver.com:9200/index/type/_search
获取/发布正文
{
"facets" : {
"school.id" : {
"terms" : {
"field" : "school.id",
"size" : 10
}
}
}
}
回复
{
"took": 281,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"facets": {
"school.id": {
"_type": "terms",
"missing": 302,
"total": 4390,
"other": 0,
"terms": [
{
"term": "1113515007867355135",
"count": 4390
}
]
}
}
}
id 的实际值为-1113515007867355135,我做错了什么还是需要传递任何内容以包含负号(词干问题)?