ElasticSearch 5.5 DSL搜索

搜索code


多個搜索條件 & 短語匹配(同時包含"廣州"和"東") { "query": { "bool": { "must": [ [ { "match_phrase": { "golf_course_name": "廣州 東" } }, { "match": { "language_type": "1" } }, { "range": { "id": { "gte": "11260870" } } } ] ] } } }
{
  "query": {
    "bool": {
      "must": [
        [
          { "match_phrase": { "golf_course_name": "廣州 " } },
          { "match": { "language_type": "1" } },
          { "range": { "id": { "gte": "11260870" } } }
        ]
      ]
    }
  }
}
過濾器(filter) 高效執行結構化搜索 { "query": { "bool": { "must": [ [ { "match": { "golf_course_name": "東" } } ] ], "filter": { "range": { "id": { "gte": "11193704", "lte": "11194704", } } } } } }
{
  "query": {
    "bool": {
      "must": [
        [
          {
            "match": {
              "golf_course_name": "東"
            }
          }
        ]
      ],
      "filter": {
        "range": {
          "id": {
            "gte": "11193704"
          }
        }
      }
    }
  }
}
OR & 條件 & 範圍搜索 { "query": { "bool": { "should": [ [ { "range": { "bdate": { "gte": "1529337600" } } }, { "match": { "language_type": "1" } } ], [ { "match": { "language_type": "2" } } ] ] } } }
{
  "query": {
    "bool": {
      "should": [
        [
          { "range": { "bdate": { "gte": "1529337600" } } },
          { "match": { "language_type": "1" } }
        ],
        [
          { "match": { "language_type": "2" } }
        ]
      ]
    }
  }
}
相關文章
相關標籤/搜索