xycloud / elasticsearch-analysis-hanlp

基于hanlp的elasticsearch分词插件

Home Page:https://github.com/hankcs/HanLP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

elasticsearch-analysis-hanlp

安装步骤:

1、下载插件并解压到es的plugins目录下 修改analysis-hanlp目录下的hanlp.properties文件 修改root的属性,值为analysis-hanlp下的data 目录的地址

2、修改es config目录下的jvm.options文件,最后一行添加

-Djava.security.policy=../plugins/analysis-hanlp/plugin-security.policy

重启es

GET /_analyze?analyzer=hanlp-index&pretty=true { “text”:”张柏芝士蛋糕店” }

测试是否安装成功

analyzer有hanlp-index(索引模式)和hanlp-smart(智能模式) hanlp-index尽可能的切分多的结果 hanlp-smart切分少的词

自定义词典 修改plugins/analysis-hanlp/data/dictionary/custom下的 我的词典.txt文件

格式遵从[单词] [词性A] [A的频次]

修改完后删除同目录下的CustomDictionary.txt.bin文件

重启es服务

目前仅支持5.x版本

注意在mac下5.5.1版本的es中,要删除plugins中.DS_Store隐藏文件,否则启动会报错

About

基于hanlp的elasticsearch分词插件

https://github.com/hankcs/HanLP


Languages

Language:Java 100.0%