我有一个Elasticsearch嵌套对象,可以预呈现地图(键->字符串+值->整数),并且我想用一种轻松的脚本来更新整数(增加其值)。知道怎么做吗?
这是我的映射:
"page": {
"_source": {
"enabled": false
},
"properties": {
"name": {
"type": "long"
},
"map": {
"type": "nested",
"properties": {
"key":"string",
"value":"long"
}
"store": true
}}}}
我需要一个脚本来更新特定文档中特定键的值。我该怎么办?
谢谢