官网:https://github.com/medcl/elasticsearch-analysis-ik
过程总结:
1、windows、linux都是先将ik下载,并解压到elasticsearch插件目录下;
2、重启elasticsearch
3、创建索引,创建索引相当于创建一个数据库。
curl -XPUT http://localhost:9200/index
4、设置索引的分词方式,可以使用kibana-->del tools,或者curl
POST /index/*/_mapping { "properties": { "content": { "type": "text", "analyzer": "ik_max_word", "search_analyzer": "ik_max_word" } } }
5、测试分词效果。
注:需要针对每个索引设置它的分词和搜索分词方式,然后测试分词才会有效果。