Elasticsearch——》测试:中文分词器插件es-ik的自定义词库

请参考:总结——》【Elasticsearch】

系统SystemLinux
版本versionelasticesearch7.6
根目录rootPath/opt/app/elasticesearch7.6
在这里插入图片描述

一、使用默认词库分词

POST _analyze
{
  "analyzer": "ik_max_word",
  "text":"老铁"
}

POST _analyze
{
  "analyzer": "ik_max_word",
  "text":"没毛病"
}

在这里插入图片描述

二、使用自定义词库分词

参考:Elasticsearch——》中文分词器插件es-ik的自定义词库

POST _analyze
{
  "analyzer": "ik_max_word",
  "text":"老铁"
}

POST _analyze
{
  "analyzer": "ik_max_word",
  "text":"没毛病"
}

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
下面是使用 Elasticsearch 中的 IK 分词进行停词和自定义词的步骤: 1. 安装 ElasticsearchIK 分词插件。 2. 创建自定义词文件,格式如下: ``` # 单个词语 词语1 词语2 ... # 带有词性的词语 词语1,词性1 词语2,词性2 ... ``` 注:词性可以不写,用逗号隔开。 3. 将自定义词文件放置在 Elasticsearch 安装目录下的 `plugins/ik/config/` 目录下。 4. 修改 IK 分词配置文件,指定停用词文件和自定义词文件,示例如下: ``` { "index": { "analysis": { "analyzer": { "my_analyzer": { "type": "custom", "tokenizer": "ik_max_word", "filter": [ "my_stopwords", "my_synonyms" ] } }, "filter": { "my_stopwords": { "type": "stop", "stopwords_path": "stopwords.txt" }, "my_synonyms": { "type": "synonym", "synonyms_path": "synonyms.txt" } } } } } ``` 注:上面示例中使用了停用词文件和同义词文件,可以根据需要自行配置。 5. 创建索引并指定使用自定义分词。 ``` PUT /my_index { "settings": { "analysis": { "analyzer": { "my_analyzer": { "type": "custom", "tokenizer": "ik_max_word", "filter": [ "my_stopwords", "my_synonyms" ] } }, "filter": { "my_stopwords": { "type": "stop", "stopwords_path": "stopwords.txt" }, "my_synonyms": { "type": "synonym", "synonyms_path": "synonyms.txt" } } } }, "mappings": { "properties": { "my_field": { "type": "text", "analyzer": "my_analyzer" } } } } ``` 6. 测试分词效果。 可以使用以下命令测试分词效果: ``` GET /my_index/_analyze { "analyzer": "my_analyzer", "text": "自定义分词测试" } ``` 上述命令会返回分词结果,可以根据需要调整自定义词和停用词文件。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值