ElasticSearch如何精确匹配?


type有username字段,希望查出username值为abc的精准内容


 json


 {
  "query": {
    "filtered": {
      "query": {
        "match": {
          "username": "abc"
        }
      }
    }
  }
}

结果查出除了abc还有abcd、xxabcxx的内容。。。

elasticsearch

猫球_Ze☆ 9 years, 7 months ago

使用term精确匹配,但是这个不支持中文。中文只能使用模糊的查询

早安G组 answered 9 years, 7 months ago

烤鱼的妖婆 answered 9 years, 7 months ago

Your Answer