Get /product/_search
{
"query": {
"bool" : {
"must" : [],//与 AND 等价。
"should" : [],//与 NOT 等价
"must_not" : [],//与 OR 等价
"filter": //不会参与评分
}
}
}
filter是对最终结果进行筛选,不会计算score评分
Get /product/_search
{
"query": {
"bool" : {
"must" : [],//与 AND 等价。
"should" : [],//与 NOT 等价
"must_not" : [],//与 OR 等价
"filter": //不会参与评分
}
}
}
filter是对最终结果进行筛选,不会计算score评分