ES查询(1)match

参考链接:
https://www.elastic.co/guide/en/elasticsearch/reference/current/full-text-queries.html
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-query.html
高级全文查询一般用于查询邮件号。

match模糊匹配,先对输入进行分词,对分词后的结果进行查询,文档只要包含match查询条件的一部分就会被返回。


GET ttt/user/_search
{
    "query":{
        "match":{
            "name": "Jacson Bai"
        }
    }
}

你可能感兴趣的:(ES查询(1)match)