elasticsearch的学习:使用postman实现增删改查
在Elasticsearch中使用Postman进行增删改查操作的基本步骤如下:
- 安装Postman:可以从官网下载并安装Postman应用。
- 启动Elasticsearch服务:确保Elasticsearch服务正在运行。
增加(Create):
POST http://localhost:9200/your_index_name/_doc/
{
"your_field": "your_value"
}
删除(Delete):
DELETE http://localhost:9200/your_index_name/_doc/your_document_id
更新(Update):
POST http://localhost:9200/your_index_name/_update/your_document_id
{
"doc": {
"your_field": "new_value"
}
}
查询(Query):
GET http://localhost:9200/your_index_name/_doc/your_document_id
以上操作可以在Postman中直接执行。只需将your_index_name
, your_document_id
, your_field
, 和 new_value
替换成你的索引名、文档ID、字段名和新的值。
评论已关闭