码迷,mamicode.com
首页 > 其他好文 > 详细

ES的临近匹配

时间:2020-06-21 18:10:03      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:bsp   art   match   type   phrase   get   div   code   href   

短语匹配
使用match_phrase

GET /my_index/my_type/_search
{
    "query": {
        "match_phrase": {
            "title": "quick brown fox"
        }
    }
}

也可以用match查询,给其加上type

"match": {
    "title": {
        "query": "quick brown fox",
        "type":  "phrase"
    }
}

ES的临近匹配

标签:bsp   art   match   type   phrase   get   div   code   href   

原文地址:https://www.cnblogs.com/1156184981651a/p/13173111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!