代码之家  ›  专栏  ›  技术社区  ›  Forepick

Elasticsearch查询:通过比较值列表选择文档(golang)

  •  0
  • Forepick  · 技术社区  · 6 年前

    {
        id: "54"
        properties: ["nice", "green", "small", "dry"]
    }
    

    现在我想选择这个索引中的所有文档 包含中给定值的列表 properties

    比如: SELECT * FROM index WHERE properties NOT CONTAINS ["red", "big", "scary"]

    如何在elasticsearch上实现这一点?

    谢谢!

    1 回复  |  直到 6 年前
        1
  •  1
  •   Paplusc    6 年前

    可以使用子句从索引中匹配这些文档 bool . 它看起来像这样:

    {
        "bool": {
            "must_not": [
                { "term": { "properties": "red" }},
                { "term": { "properties": "big" }},
                { "term": { "properties": "scary" }}
             ]
        }
    }
    

    查询可以如下所示:

    {
      "filtered": {
        "query": {
          "match": { "id": "54" }
        },
        "filter":{
          "bool": {
            "must_not": [
                { "term": { "properties": "red" }},
                { "term": { "properties": "big" }},
                { "term": { "properties": "scary" }}
            ]
          }
        }
      }
    }
    

    有关更多信息,请查看以下链接: Filtered query