我正在寻找弹性搜索的最佳实践 - 我需要更新文件(如果存在)(如果它),如果它没有 - 创建它。 性能明智的最佳方式是什么? 我正在使用elasticsearch节点模块,并寻找像 -
这样的解决方案POST /indexName/test/8/_update
{
"doc" : {
"tags" : [ "testing" ],
"views": 5
},
"doc_as_upsert" : true
}
答案 0 :(得分:0)
如果您正在寻找批量upsert操作,可以点击此链接: http://elasticsearchserverbook.com/elasticsearch-0-90-1-updates-in-bulk-api/