Elasticsearch Document Update API详解、原理与示例
PUT /website/blog/123
{
"title": "My first blog entry",
"text": "I am starting to get the hang of this...",
"date": "2014-05-30"
}
POST /website/blog/123/_update
{
"doc": {
"title": "My first blog entry",
"body": "I am starting to get the hang of this..."
}
}
上述代码中,我们首先通过PUT
请求创建了一个文档。接着,我们使用POST
请求对该文档执行了更新操作,将text
字段更名为body
。这个过程展示了Elasticsearch中文档更新的标准流程,即先创建文档,然后使用_update
端点进行局部更新。
评论已关闭