ElasticSearch 中文分词插件ik 的使用

Elasticsearch安装中文分词插件ik

为了做搜索弄了一个星期,还是没有搜索到自己想要的内容。虽说各种查询都懂一点,但是就是查不到自己想要的。
那是以为我用的是默认的标准分词器。对中文来说不是很好,它把中文拆成一个一个的。
然后我就各种论坛,各种博客,各种学习网站。然后发现有这么一个ik中文分词的东西。
然后我就试着使用了一下,发现确实一些基本的查询都搞定了。一个星期的问题,其实装个插件就搞定了。有点小郁闷。

一、Windows 安装ik插件

1、下载地址:https://github.com/medcl/elasticsearch-analysis-ik

下载你对应的版本
版本对照

这里写图片描述

2、解压

把下载的文件,解压

3、在elasticsearch 的plugins 目录下,新建一个名为:ik 的文件夹,把上面解压的东西放到ik文件内

这里写图片描述

4、重启elasticsearch

二、Linux 安装ik插件

操作和windows 的操作一样。。。。。。

三、创建ik 索引

简单粗暴,代码如下


{
    "setting":{
        "number_of_shards":5,
        "number_of_replicas":1
    },
    "mappings":{
        "brain":{
            "properties":{
                "answer":{
                    "type":"text",
                    "analyzer":"ik_max_word",
                    "search_analyzer":"ik_smart" },
                "question":{
                    "type":"text",
                    "analyzer":"ik_max_word",
                    "search_analyzer":"ik_smart" },
                "user_id":{
                    "type":"text" },
                "create_time":{
                    "type":"date",
                    "format":"yyyy-MM-dd HH:mm:ss || yyyy-MM-dd || epoch_millis" }
            }
        },
        "history":{
            "properties":{
                "question":{
                    "type":"text",
                    "analyzer":"ik_max_word",
                    "search_analyzer":"ik_smart" },
                "user_id":{
                    "type":"text" },
                "address":{
                    "type":"text",
                    "analyzer":"ik_max_word",
                    "search_analyzer":"ik_smart" },
                "is_read":{
                    "type":"text" },
                "create_time":{
                    "type":"date",
                    "format":"yyyy-MM-dd HH:mm:ss || yyyy-MM-dd || epoch_millis" }
            }

        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值