{
"query": {
"bool": {
"must": [{
"match_phrase": {
"name": "a"
}
}],
"should": [{
"match_phrase": {
"city": "b"
}
},
{
"match_phrase": {
"city": "c"
}
}],
"minimum_should_match": 1
}
},
"size": 5
}
或者
$query['query']['bool']['should'][] = [["match_phrase" => ["city" => $a]], ["match_phrase" => ["city => $b]]];
$query['query']['bool']['minimum_should_match'] = 1;
网友评论