ElasticSearch速学 - IK中文分词器远程字典设置

前面已经对”IK中文分词器“有了简单的了解:
ElasticSearch速学 - IK中文分词器远程字典设置_第1张图片

但是可以发现不是对所有的词都能很好的区分,比如:
ElasticSearch速学 - IK中文分词器远程字典设置_第2张图片
逼格这个词就没有分出来。

词库

实际上IK分词器也是根据一些词库来进行分词的,我们可以丰富这个词库。
IK分词器(IK Analysis for Elasticsearch)给了我们一个基本的配置:
https://github.com/medcl/elasticsearch-analysis-ik
ElasticSearch速学 - IK中文分词器远程字典设置_第3张图片

修改我们es实例中ik插件的配置:

cd elasticsearch-5.3.0/plugins/ik/config/

这里写图片描述

main.dic是住词库,stopword是停用词库(把一些错误的分词加入进来,之后不会再被分词了);custom目录中是我们的自定义词库。
这些词库都是本地词库。可以参考配置文档来设置。

热更新 IK 分词使用方法

官方文档:
https://github.com/medcl/elasticsearch-analysis-ik
ElasticSearch速学 - IK中文分词器远程字典设置_第4张图片

我们来配置一下:

#进入es实例找到ik插件的配置文件
elasticsearch-5.3.0/plugins/ik/config
#编辑配置文件
vi IKAnalyzer.cfg.xml

内容:



<properties>
    <comment>IK Analyzer 扩展配置comment>
    
    <entry key="ext_dict">custom/mydict.dic;custom/single_word_low_freq.dicentry>
     
    <entry key="ext_stopwords">custom/ext_stopword.dicentry>
    
    <entry key="remote_ext_dict">http://10.211.55.13/myDict.phpentry>
    
    
properties>

myDict.php:



header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');
echo "逼格\n";

ElasticSearch速学 - IK中文分词器远程字典设置_第5张图片

你可能感兴趣的:(最佳实践,ElasticSearch速学)