当您match
在bool must
子句中仅使用一个时,没有区别,当您想要组合多个(布尔)标准时,布尔子句很有用,更多信息请参阅官方 ES doc。它支持以下标准。
- 必须
- 禁止
- 筛选
- 应该
让我从你的问题中举一个小例子来说明。
只有地址和名字的索引映射
{
"mappings": {
"properties": {
"address": {
"type": "text"
},
"first_name" :{
"type" : "text"
}
}
}
}
索引 3 个文档,都具有相同的地址mill
,但不同first_name
{
"address" : "mill",
"first_name" : "Johnson"
}
{
"address" : "mill",
"first_name" : "Parker"
}
{
"address" : "mill",
"first_name" : "opster"
}
搜索查询以显示所有地址mill
但不得包含 first_name 作为parker
{
"query": {
"bool": {
"must": [
{
"match": {
"address": "mill"
}
},
{
"must_not": {
"first_name": "parker"
}
}
]
}
}
}
结果只有 2 个地址
"hits": [
{
"_index": "so-60620921-bool",
"_type": "_doc",
"_id": "2",
"_score": 0.13353139,
"_source": {
"address": "mill",
"first_name": "opster"
}
},
{
"_index": "so-60620921-bool",
"_type": "_doc",
"_id": "3",
"_score": 0.13353139,
"_source": {
"address": "mill",
"first_name": "Johnson"
}
}
]
基于 OP 注释,提供查询和过滤上下文,详细了解性能方面。