在 Go 中使用 Olivere/Elastic 更新 ElasticSearch 中的記錄
使用 Olivere/Elastic 將記錄插入 ElasticSearch 非常簡單。但是,當涉及部分更新時,可能會缺少 UPDATE API 的文檔。以下是如何在 Go 中將這個 API 與 Olivere/Elastic 結合使用。
解決方案:
要執行部分更新,您可以使用以下程式碼:
<code class="go">update, err := client.Update().Index("test3").Type("user").Id("2").Doc(map[string]interface{}{"location": message}).Do() fmt.Println("updated id: ", update.Id)</code>
此程式碼使用索引test3 中ID 為22的文檔的訊息變數的值更新欄位位置。
替代方法:
另一種已被報告為不成功的方法是:
<code class="go">update := client.Update().Index("test3").Type("user").Id("2").Script(elastic.NewScript("ctx._source.location = loc").Params(map[string]interface{}{"loc": message}).Lang("groovy")) fmt.Println("updated id: ", update.Id)</code>
如果您遇到此方法的任何問題,第一個範例應該為在Go 中使用Olivere/Elastic 進行部分更新提供可靠的解決方案彈性搜尋。
以上是如何在 Go 中使用 Olivere/Elastic 在 ElasticSearch 中執行部分更新?的詳細內容。更多資訊請關注PHP中文網其他相關文章!