阅读大约4分钟,文末搜一套从零到实战源码。

Elasticsearch7.1  REST操作。

本博客近期教程笔记都基于elasticsearch7编写

  1. 创建空索引(put方式)

    Elasticsearch7.1之cerebro使用(一)_analyzer
     
  2. 查看索引信息(demo/_mapping?pretty    GET)
    可以看到,mapping为空。

    Elasticsearch7.1之cerebro使用(一)_elasticsearch_02
     
  3. 构建索引数据结构
  4. [POST]

    demo/_mapping?pretty

    {
    "properties":{
    "title":{
    "type":"text",
    "analyzer":"ik_max_word"
    },
    "content":{
    "type":"text",
    "analyzer":"ik_max_word"
    }
    }
    }

    展示图Elasticsearch7.1之cerebro使用(一)_spring_03

  5. 查看mapping    [  demo/_mapping?pretty  ]    GET

    Elasticsearch7.1之cerebro使用(一)_elasticsearch_04
     
  6. 搜索-(在构建索引时,指定了插入和搜索都用ik分词,这里只设定了from和size字段)
     
  7. 【POST】

    demo/_search

    {
    "query":{
    "term":{
    "name":"美国"
    }
    },
    "from":"0",
    "size":"20"
    }
  8. 展示图
    Elasticsearch7.1之cerebro使用(一)_elasticsearch_05

我是 JavaPub,三观很正,乐于创业,喜欢烹饪。今年已近年中,各位小伙伴一定已经拿到自己心仪的offer,但是不要忘记进步,共勉![​​pub哥的2020文章清单​​!]

(https://mp.weixin.qq.com/s?__biz=MzUzNDUyOTY0Nw==&mid=2247484791&idx=1&sn=2f685ce56c593cf520a99c3c7a53e371&chksm=fa921677cde59f61a908e6c807d4d045d005926ed7c7531d05c6fb0359972e1416c44f59ac81&scene=21&token=218802658&lang=zh_CN#wechat_redirect)

​原创教程:​

1. Springboot2.x整合ElasticSearch7.x实战(一)

2. Springboot2.x整合ElasticSearch7.x实战(二)

3. Springboot2.x整合ElasticSearch7.x实战(三)

公众号有对应视频