"query": {
"bool": {
"must": {
"multi_match": {
"query": "red hat cat"
}
}
}
我希望搜索的时候"red hat"必须挨在一起为一个词组,"cat"可以分开
要怎么做?
求各位大神指导
"bool": {
"must": {
"multi_match": {
"query": "red hat cat"
}
}
}
我希望搜索的时候"red hat"必须挨在一起为一个词组,"cat"可以分开
要怎么做?
求各位大神指导
2 个回复
pony_maggie - 公众号:犀牛饲养员的技术笔记
赞同来自: hy690322863
{
"query": {
"bool": {
"should": [
{"match_phrase": {
"title": "red hat"
}},
{"match": {
"title": "cat"
}}
]
}
}
}
BKing - Double non. Open source software and dreamer (English Français Japanese Korean ) learners
赞同来自: hy690322863
希望以上内容对你有所帮助。