我们正在对嵌套对象进行 match_phrase 查询,其中嵌套对象只有一个字符串值。
我们打算找到字符串短语的出现。
让我们假设,
1) 映射如下。
"attr": {
"type": "nested",
"properties": {
"attr": {
"type": "multi_field",
"fields": {
"attr": { "type": "string", "index": "analyzed", "include_in_all": true, "analyzer": "keyword" },
"untouched": { "type": "string", "index": "analyzed", "include_in_all": false, "analyzer": "not_analyzed" }
}
}
}
}
2)数据就像。
对象 A:
"attr": [
{
"attr": "beverage"
},
{
"attr": "apple wine"
}
]
对象 B:
"attr": [
{
"attr": "beverage"
},
{
"attr": "apple"
},
{
"attr": "wine"
}
]
3)因此,在查询中
{
"query": {
"match": {
"_all": {
"query": "apple wine",
"type": "phrase"
}
}
}
}
我们只期待对象 A,但不幸的是对象 B 也即将到来。
请期待您的建议。