赞
踩
elasticsearch-plugin list
查看是否有自己建立的ik目录GET _analyze
{
"analyzer": "ik_smart",
"text": "我喜欢玩剧本杀"
}
{ "tokens" : [ { "token" : "我", "start_offset" : 0, "end_offset" : 1, "type" : "CN_CHAR", "position" : 0 }, { "token" : "喜欢", "start_offset" : 1, "end_offset" : 3, "type" : "CN_WORD", "position" : 1 }, { "token" : "玩", "start_offset" : 3, "end_offset" : 4, "type" : "CN_CHAR", "position" : 2 }, { "token" : "剧本", "start_offset" : 4, "end_offset" : 6, "type" : "CN_WORD", "position" : 3 }, { "token" : "杀", "start_offset" : 6, "end_offset" : 7, "type" : "CN_CHAR", "position" : 4 } ] }
GET _analyze
{
"analyzer": "ik_max_word",
"text": "我喜欢玩剧本杀"
}
{ "tokens" : [ { "token" : "我", "start_offset" : 0, "end_offset" : 1, "type" : "CN_CHAR", "position" : 0 }, { "token" : "喜欢", "start_offset" : 1, "end_offset" : 3, "type" : "CN_WORD", "position" : 1 }, { "token" : "玩", "start_offset" : 3, "end_offset" : 4, "type" : "CN_CHAR", "position" : 2 }, { "token" : "剧本", "start_offset" : 4, "end_offset" : 6, "type" : "CN_WORD", "position" : 3 }, { "token" : "杀", "start_offset" : 6, "end_offset" : 7, "type" : "CN_CHAR", "position" : 4 } ] }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。