原 Elasticsearch(三):通过Restful方式操作索引
版权声明:本文为博主原创文章,请尊重他人的劳动成果,转载请附上原文出处链接和本声明。
本文链接:https://www.91mszl.com/zhangwuji/article/details/1308
method | url地址 | 描述 |
---|---|---|
POST | http://ip:port/索引名称 | 创建文档(文档id自动生成) |
POST | http://ip:port /索引名称/文档id/_update | 修改文档 |
POST | http://ip:port /索引名称/_search | 查询所有数据 |
PUT | http://ip:port /索引名称/文档id | 创建文档(指定文档id) |
GET | http://ip:port /索引名称/文档id | 查询文档(通过文档id) |
DELETE | http://ip:port /索引名称/文档id | 删除文档 |
PUT /test2
{
"mappings": {
"properties": {
"name":{
"type":"text"
},
"age":{
"type":"long"
}
}
}
}
PUT /test1/_doc/1
{
"name":"张博士",
"age":20,
"sex":"男"
}
GET test2
GET /test1/_doc/1
GET test1/_doc/_search?q=name:张博士
我们将/test1/_doc/1 中的name值由张博士,改为王博士
POST /test1/_doc/1/_update
{
"doc":{
"name":"王博士"
}
}
DELETE /test1
2021-03-20 19:21:56 阅读(841)
名师出品,必属精品 https://www.91mszl.com