美文网首页
ES text 查询 match逻辑

ES text 查询 match逻辑

作者: 西二旗老司机 | 来源:发表于2018-02-02 14:40 被阅读0次

    // TODO待完善
    只match
    match_phrase

    但不能做完成匹配需要分词时,做特殊设置

    "query": {
      "type": "text",
      "fields": {
        "row": {
          "type": "keyword"
        }
      },
      "analyzer": "ik_max_word"
    },
    

    通过`fields.row.type指定为keyword,可以实现完全匹配

    相关文章

      网友评论

          本文标题:ES text 查询 match逻辑

          本文链接:https://www.haomeiwen.com/subject/jlcezxtx.html