2016-01-27 Elasticsearch的mapping设置 1234567891011121314PUT /my_index{ "mappings": { "my_type": { "properties": { "title": { "type": "string", "index": "analyzed", "analyzer": "ik_smart" } } } }} Newer Es查询的时候控制相似度 Older Elasticsearch配置ik分词器