美文网首页
QueryDsl-复合查询

QueryDsl-复合查询

作者: __________Yy | 来源:发表于2019-11-22 15:28 被阅读0次
1.bool 布尔查询
适用于 must    must_not   range   should
{
  "query": {
    "bool" : {
      "must" : {
        "term" : { "type" : "时事" }
      },
      "filter": {
        "term" : { "name" : "中国" }
      },
      "must_not" : {
        "range" : {
          "id" : { "gte" : 300, "lte" : 400 }
        }
      },
      "should" : [
        { "term" : { "description" : "中国" } },
        { "term" : { "description" : "政务" } }
      ],
      "minimum_should_match" : 2 //中国和政务都的匹配
    }
  }
}

相关文章

网友评论

      本文标题:QueryDsl-复合查询

      本文链接:https://www.haomeiwen.com/subject/vfcqwctx.html