在有些时候,单个分析器并不能满足搜索分词的需求,所以会设置多个分析器,如

{
"title": {
    "type": "text",
    "analyzer": "ik_smart",
    "fields": {
        "max": {
            "type": "text",
            "analyzer": "ik_max_word"
        },
        "full": {
            "type": "keyword"
        }
    }
}

}

这样title就能同时拥有ik_smart和ik_max_word两种分词结果