参考文章:Elasticsearch 搜索数组字段_hhhzua的专栏-CSDN博客_elasticsearch 查询数组文章来源地址https://www.toymoban.com/news/detail-522517.html
1、搜索 数组字段tags中同时存在元素str_a、str_b
{
"query": {
"bool": {
"filter": [
{
"term": {
"tags": "str_a"
}
},
{
"term": {
"tags": "str_b"
}
}
]
}
}
}
2、搜索 数组字段tags中存在元素str_a或str_b
{
"query": {
"bool": {
"filter": [
{
"terms": {
"tags": [
"str_a",
"str_b"
]
}
}
]
}
}
}
文章来源:https://www.toymoban.com/news/detail-522517.html
到了这里,关于Elasticsearch 搜索数组字段的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!