docker安装elasticsearch ik分词使用

先查找docker镜像有哪些

docker search elasticsearch

在这里插入图片描述

下载镜像
docker  pull elasticsearch:6.5.0
根据镜像启动容器
docker run --name es -d -p 9200:9200 -p 9300:9300 elasticsearch:6.5.0

在这里插入图片描述

  • 查看es的基本信息
    在这里插入图片描述
    列出所有的index
    在这里插入图片描述
    添加index
    curl -X PUT ‘localhost:9200/weather’
    删除index
    curl -X DELETE ‘localhost:9200/weather’

安装中文分词插件IK
./bin/elasticsearch-plugin install https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v6.5.0/elasticsearch-analysis-ik-6.5.0.zip
重启es容器
docker restart es

两种分词模式:
ik_smart:会做最粗粒度的拆分
ik_max_word:会将文本做最细粒度的拆分

创建一个中文分词

curl -X PUT -H 'Content-Type:application/json' 'localhost:9200/accounts -d' '
{
  "mappings": {
    "person": {
      "properties": {
        "user": {
          "type": "text",
          "analyzer": "ik_max_word",
          "search_analyzer": "ik_max_word"
        },
        "title": {
          "type": "text",
          "analyzer": "ik_max_word",
          "search_analyzer": "ik_max_word"
        }
      }
    }
  }
}'

向Index增加记录:

curl -X PUT -H 'Content-Type: application/json' 'localhost:9200/accounts/person/1' -d '
{
  "user": "张三",
  "title": "工程师"
}'

POST方式(POST方式不需要传id,id随机生成)

curl -X POST -H 'Content-Type: application/json' 'localhost:9200/accounts/person' -d '
{
  "user": "李四",
  "title": "工程师"
}'

注意:如果没有先创建 Index(这个例子是accounts),直接执行上面的命令,Elastic 也不会报错,而是直接生成指定的 Index。所以,打字的时候要小心,不要写错 Index 的名称。

查看指定条目的记录
`curl ‘localhost:9200/accounts/person/1?pretty=true’

删除一条记录
curl -X DELETE 'localhost:9200/accounts/person/1'

更新一条记录

curl -X PUT -H 'Content-Type: application/json' 'localhost:9200/accounts/person/1' -d '
{
    "user" : "张三",
    "title" : "软件开发"
}' 

查询所有记录
`curl ‘localhost:9200/accounts/person/_search?pretty=true’``

简单查询

curl -H 'Content-Type: application/json' 'localhost:9200/accounts/person/_search?pretty=true'  -d '
{
  "query" : { "match" : { "title" : "工程" }},
  "from": 1, #0开始
  "size": 1, #返回几条数据
}'

OR查询

curl -H 'Content-Type: application/json' 'localhost:9200/accounts/person/_search?pretty=true'  -d '
{
  "query" : { "match" : { "title" : "工程 哈哈" }}
}'

AND查询

curl -H 'Content-Type: application/json' 'localhost:9200/accounts/person/_search?pretty=true'  -d '
{
  "query": {
    "bool": {
      "must": [
        { "match": { "title": "工程" } },
        { "match": { "title": "哈哈" } }
      ]
    }
  }
}'
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章