Github
官網,搜索elasticsearch-analysis-ik
,單擊medcl/elasticsearch-analysis-ik
。或者直接點擊readme.md
文件中,下拉選擇預編譯版本。ik
與elasticsearch
存在兼容問題。因此在下載ik
時要選擇和elasticsearch
版本一致的,也就是選擇v6.5.4
版本,單擊elasticsearch-analysis-ik-6.5.4.zip
包,自動進入下載到本地。zip
包。C:\Program Files\elasticseach-6.5.4\plugins
目錄,新建一個名爲ik
的子目錄,並將elasticsearch-analysis-ik-6.5.4.zip
包解壓到該ik
目錄內也就是C:\Program Files\elasticseach-6.5.4\plugins\ik
目錄。elascticsearch
和kibana
服務重啓。http://localhost:5601
,在Dev Tools
中的Console
界面的左側輸入命令,再點擊綠色的執行按鈕執行。GET _analyze { "analyzer": "ik_max_word", "text": "上海自來水來自海上" }
右側就顯示出結果了以下所示:git
{
"tokens" : [ { "token" : "上海", "start_offset" : 0, "end_offset" : 2, "type" : "CN_WORD", "position" : 0 }, { "token" : "自來水", "start_offset" : 2, "end_offset" : 5, "type" : "CN_WORD", "position" : 1 }, { "token" : "自來", "start_offset" : 2, "end_offset" : 4, "type" : "CN_WORD", "position" : 2 }, { "token" : "水", "start_offset" : 4, "end_offset" : 5, "type" : "CN_CHAR", "position" : 3 }, { "token" : "來自", "start_offset" : 5, "end_offset" : 7, "type" : "CN_WORD", "position" : 4 }, { "token" : "海上", "start_offset" : 7, "end_offset" : 9, "type" : "CN_WORD", "position" : 5 } ] }
OK,安裝完畢,很是的簡單。github