es6.6.1 索引的增加,查询,修改,删除

时间:2021-02-09 12:29:59   收藏:0   阅读:0

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

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!