发布于:
2022-07-12 11:44:14
相关性搜索
match
必须同时满足两个单词才能查出 && and
match_phrase
Or查找
{
"query" : { "match" : { "desc" : "软件 系统" }},
"from": 20,
"size": 10
}
And查找 注意有bool和must
{
"query": {
"bool": {
"must": [
{ "match": { "desc": "软件" } },
{ "match": { "desc": "系统" } }
]
}
},
"from": 20,
"size": 10
}