局部更新
POST /website/blog/1/_update
{
"doc" : {
"tags" : [ "testing" ],
"views": 0
}
}{
"_index" : "website",
"_id" : "1",
"_type" : "blog",
"_version" : 3
}{
"_index": "website",
"_type": "blog",
"_id": "1",
"_version": 3,
"found": true,
"_source": {
"title": "My first blog entry",
"text": "Starting to get the hang of this...",
"tags": [ "testing" ], <1>
"views": 0 <1>
}
}使用脚本进行更新
更新一篇可能不存在的文档
更新和冲突
Last updated