赞
踩
smartcn是目前ES官方推荐的中文分词插件,不过目前不支持自定义词库。
插件安装方式:
{ES安装目录}/bin/elasticsearch-plugin install analysis-smartcn
安装完成后,重启ES即可 一定要重启不然找不到分词器!!!。
smartcn的分词器名字就叫做:smartcn
smartcn中文分词效果
GET /_analyze
{
“text”: “红烧牛肉面”,
“analyzer”: “smartcn”
}
{
“tokens” : [
{
“token” : “红烧”,
“start_offset” : 0,
“end_offset” : 2,
“type” : “word”,
“position” : 0
},
{
“token” : “牛肉面”,
“start_offset” : 2,
“end_offset” : 5,
“type” : “word”,
“position” : 1
}
]
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。