其他分享
首页 > 其他分享> > 2021-09-03 Elasticsearch基操

2021-09-03 Elasticsearch基操

作者:互联网

Elasticsearch 基操

一、Elasticsearch介绍

二、curl 基本操作

参考:使用curl操作
新建 index :

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

标签:03,基操,text,09,Elasticsearch,基本操作,curl,type
来源: https://blog.csdn.net/qq_41590764/article/details/120082626