赞
踩
但是我们有"两头"的数据
http://60.205.188.229:9200/_analyze?analyzer=standard&pretty=true&text=我是程序员 { "tokens": [ { "token": "我", "start_offset": 0, "end_offset": 1, "type": "<IDEOGRAPHIC>", "position": 0 }, { "token": "是", "start_offset": 1, "end_offset": 2, "type": "<IDEOGRAPHIC>", "position": 1 }, { "token": "程", "start_offset": 2, "end_offset": 3, "type": "<IDEOGRAPHIC>", "position": 2 }, { "token": "序", "start_offset": 3, "end_offset": 4, "type": "<IDEOGRAPHIC>", "position": 3 }, { "token": "员", "start_offset": 4, "end_offset": 5, "type": "<IDEOGRAPHIC>", "position": 4 } ] }
关闭原来ES服务器
切换elsearch用户
解压elasticsearch-analysis-ik-5.6.8.zip
unzip elasticsearch-analysis-ik-5.6.8.zip
移动解压出来的elasticsearch
[elsearch@zhoufei elasticsearch]$ mv elasticsearch /usr/local/java/elasticsearch/elasticsearch-5.6.8/plugins
重启启动ES服务器
http://60.205.188.229:9200/_analyze?analyzer=ik_smart&pretty=true&text=我是程序员 { "tokens": [ { "token": "我", "start_offset": 0, "end_offset": 1, "type": "CN_CHAR", "position": 0 }, { "token": "是", "start_offset": 1, "end_offset": 2, "type": "CN_CHAR", "position": 1 }, { "token": "程序员", "start_offset": 2, "end_offset": 5, "type": "CN_WORD", "position": 2 } ] }
http://60.205.188.229:9200/_analyze?analyzer=ik_max_word&pretty=true&text=我是程序员 { "tokens": [ { "token": "我", "start_offset": 0, "end_offset": 1, "type": "CN_CHAR", "position": 0 }, { "token": "是", "start_offset": 1, "end_offset": 2, "type": "CN_CHAR", "position": 1 }, { "token": "程序员", "start_offset": 2, "end_offset": 5, "type": "CN_WORD", "position": 2 }, { "token": "程序", "start_offset": 2, "end_offset": 4, "type": "CN_WORD", "position": 3 }, { "token": "员", "start_offset": 4, "end_offset": 5, "type": "CN_CHAR", "position": 4 } ] }
http://60.205.188.229:9200/blog4 { "mappings": { "article": { "properties": { "id": { "type": "long", "store": true, "index":"not_analyzed" }, "title": { "type": "text", "store": true, "index":"analyzed", "analyzer":"ik_smart" }, "content": { "type": "text", "store": true, "index":"analyzed", "analyzer":"ik_smart" } } } } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。