Update README.textile

This commit is contained in:
elasticsearch-ik 2014-09-24 16:56:04 +08:00
parent ddef2a1051
commit 6048982a4d

View File

@ -1,6 +1,11 @@
IK Analysis for ElasticSearch
==================================
更新说明:
对于使用es集群用ik作为分词插件经常会修改自定义词典增加远程加载每次更新都会重新加载词典不必重启es服务。
The IK Analysis plugin integrates Lucene IK analyzer into elasticsearch, support customized dictionary.
Tokenizer: `ik`
@ -52,7 +57,11 @@ https://github.com/medcl/elasticsearch-analysis-ik/blob/master/config/ik/IKAnaly
<!--用户可以在这里配置自己的扩展字典 -->
<entry key="ext_dict">custom/mydict.dic;custom/single_word_low_freq.dic</entry>
<!--用户可以在这里配置自己的扩展停止词字典-->
<entry key="ext_stopwords">custom/ext_stopword.dic</entry>
<entry key="ext_stopwords">custom/ext_stopword.dic</entry>
<!--用户可以在这里配置远程扩展字典 -->
<entry key="ext_dict">location</entry>
<!--用户可以在这里配置远程扩展停止词字典-->
<entry key="ext_stopwords">location</entry>
</properties>
</pre>