美文网首页
好记性不如烂笔头(es)

好记性不如烂笔头(es)

作者: ccsyy | 来源:发表于2018-12-04 15:19 被阅读0次
  • 自定义分词器
    put ip:9200/mytest
{
    "settings": {
        "analysis": {
            "analyzer": {
                "nik": {
                    "tokenizer": "ik_smart",
                    "filter": "n_length"
                }
            },
            "filter": {
                "n_length": {
                    "min": 2,
                    "max": 4,
                    "type": "length"
                }
            }
        }
    }
}

相关文章

网友评论

      本文标题:好记性不如烂笔头(es)

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