bool查询或顶级查询中的diff多重匹配是什么?

时间:2019-05-20 14:56:48

标签: elasticsearch

我想知道以下两个dsl是否有差异?

摘要1

"query" : {
  "bool" : {
    "must" : {
      "multi_match" : {
        "query" : "Google",
        "fields" : [ "custNm" ]
      }
    }
  }
}

摘要2

"query" : {
  "multi_match" : {
    "query" : "Google",
    "fields" : [ "custNm" ]
  }
}

0 个答案:

没有答案