代码拉取完成,页面将自动刷新
集成 Lucene / Jieba Analyzer,支持自定义词典。
Jieba Chinese Analysis Plugin | ElasticSearch | Analyzer |
---|---|---|
0.0.2 | 1.0.0RC2 | 0.0.2 |
0.0.3-SNAPSHOT | 1.3.0 | 1.0.0 |
0.0.4 | 1.5.x | 1.0.2 |
2.3.3 | 2.3.3 | 1.0.2 |
2.3.4 | 2.3.4 | 1.0.2 |
2.3.5 | 2.3.5 | 1.0.2 |
本插件包括
jieba analyzer
、jieba tokenizer
、jieba token filter
,有三种模式供选择。
插件版本跟 ES 版本保持一致
2.3.5
./bin/plugin install https://github.com/huaban/elasticsearch-analysis-jieba/releases/download/v2.3.5/elasticsearch-analysis-jieba-2.3.5-bin.zip
2.3.4
./bin/plugin install https://github.com/huaban/elasticsearch-analysis-jieba/releases/download/v2.3.4/elasticsearch-analysis-jieba-2.3.4-bin.zip
2.3.3
./bin/plugin install https://github.com/huaban/elasticsearch-analysis-jieba/releases/download/v2.3.3/elasticsearch-analysis-jieba-2.3.3-bin.zip
请使用插件 0.0.4 版本编译安装
cd {your_es_path}
mkdir plugins/jieba
# 拷贝 jar
copy jieba-analysis-1.0.2.jar and elasticsearch-analysis-jieba-0.0.4.jar to plugins/jieba
# 拷贝用户字典
cp -r data/jieba {your_es_path}/config/
curl -XPUT 127.0.0.1:9200/test -d '{
"settings" : {
"number_of_shards" : 1,
"number_of_replicas" : 0
},
"mappings" : {
"test" : {
"_all" : { "enabled" : false },
"properties" : {
"name" : { "type" : "string", "analyzer" : "jieba_index", "search_analyzer" : "jieba_search" }
}
}
}
}';echo
curl 'http://127.0.0.1:9200/test/_analyze?analyzer=jieba_index' -d '中华人民共和国';echo
curl 'http://127.0.0.1:9200/test/_analyze?analyzer=jieba_search' -d '中华人民共和国';echo
curl 'http://127.0.0.1:9200/test/_analyze?analyzer=jieba_other' -d '中华人民共和国 HelLo';echo
github-release release \
--user huaban \
--repo elasticsearch-analysis-jieba \
--tag v2.3.5 \
--name "v2.3.5" \
--description "支持 ES v2.3.5"
github-release upload \
--user huaban \
--repo elasticsearch-analysis-jieba \
--tag v2.3.5 \
--name "elasticsearch-analysis-jieba-2.3.5-bin.zip" \
--label "plugin.zip" \
--file target/releases/elasticsearch-analysis-jieba-2.3.5-bin.zip
一顿黄焖鸡
请我喝一杯
或者随君意
This software is licensed under the Apache 2 license, quoted below.
Copyright (C) 2013 libin and Huaban Inc<http://www.huaban.com>
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。