以下查询需要从版本2.x更改为版本5.x。
filtered => bool
但是不应该支持多个查询。
"query": {
"filtered": {
"query": {
"match_all": {}
},
"filter": {
"bool": {
"must": [{
"query": {
"match": {
"valid": "Y"
}
}
}],
"should": [
{ "query": { "wildcard": { "name": { "value": '*' + searchValue + '*' } } } },
{ "query": { "wildcard": { "fisrtname": { "value": '*' + searchValue + '*' } } } }
]
}
}
}
},
"sort": [{
"name": {
"order": "asec"
}
}],
"from": 0,
"size": 15
答案 0 :(得分:1)
这样的事情:
{
"query": {
"bool": {
"filter": {
"bool": {
"must": [
{
"match": {
"valid": "Y"
}
}
],
"should": [
{
"wildcard": {
"name": {
"value": "searchValue"
}
}
},
{
"wildcard": {
"firstname": {
"value": "searchValue"
}
}
}
]
}
}
}
},
"sort": [
{
"name": {
"order": "asc"
}
}
],
"from": 0,
"size": 15
}
第一个bool.filter包装器是这样,所有东西都被视为过滤器而不是得分并且可能被缓存。