因为项目查询比较复杂,每个查询都可能查询多个字段多个值,现在想一个字段查询多个值的时候是用should拼接查询效率高还是用多值查询比较快,如下两种查询:1.{
"profile": true,
"size":0,
"query":{
"terms":{
"status":["1","2","3"]
}
}
}
2.
{
"profile": true,
"size":0,
"query": {
"bool": {
"must": [{
"bool": {
"should": [{
"term": {
"status": "1"
}
},
{
"term": {
"status": "2"
}
},
{
"term": {
"status": "3"
}
}
]
}
}
]
}
}
}
"profile": true,
"size":0,
"query":{
"terms":{
"status":["1","2","3"]
}
}
}
2.
{
"profile": true,
"size":0,
"query": {
"bool": {
"must": [{
"bool": {
"should": [{
"term": {
"status": "1"
}
},
{
"term": {
"status": "2"
}
},
{
"term": {
"status": "3"
}
}
]
}
}
]
}
}
}
1 个回复
FFFrp
赞同来自: laoyang360