04 elasticsearch学习笔记-基本CRUD

2021/9/13 6:06:30

本文主要是介绍04 elasticsearch学习笔记-基本CRUD,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

视频教程
https://www.bilibili.com/video/BV1y5411j7su?p=5





# 查看elaticsearch的状态
GET _cat/health

# 查看有哪些索引
GET _cat/indices?v


GET _analyze
{
  "analyzer":"ik_smart",
  "text": "我是中国人"
}

GET _analyze
{
  "analyzer":"ik_max_word",
  "text": "我是中国人"
}

GET _analyze
{
  "analyzer":"ik_max_word",
  "text": "狂神说java"
}


# test里的总数
GET tes3/_count

# 查所有的数据
GET tes3/_search

# 查id为1的数据
GET tes3/_doc/1


#创建test3
PUT /test3
{
  "mappings": {
    "properties": {
      "name":{
        "type":"text"
      },
      "age":{
        "type": "long"
      },
      "birthday":{
        "type": "date"
      }
    }
  }
}

GET test3

PUT /test3/_doc/1
{
    "name":"张三",
    "age":26,
    "birth":"1997-01-06"
}


GET test3



POST /test3/_doc/1/_update
{
  "doc":{
    "name":"212121"
  }
}

GET /test3/_doc/1

DELETE /test1

DELETE /test2


这篇关于04 elasticsearch学习笔记-基本CRUD的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程