es6.6.1 索引的增加,查询,修改,删除
1.新增
test2/user2/1/_create PUT操作 {"name":"qiqi","age":17}
2.查询
test2/user2/_search GET {"query":{"match":{"name":"qiqi"}}}
或:test2/user2/1 GET
{ - "_index": "test2", "_type": "user2", "_id": "1", "_version": 7, "_seq_no": 6, "_primary_term": 1, "found": true, "_source": { - "name": "qiqi", "age": 17 } }
3.修改
test2/user2/1/_update POST 局部修改 {"doc":{"sex":"woman"}}
4.删除
test2/user2/1 DELETE
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。 原始发表:2021-02-08,如有侵权请联系 cloudcommunity@tencent 删除getpostputsearch索引发布者:admin,转转请注明出处:http://www.yc00.com/web/1754990759a5224611.html
评论列表(0条)