大家好,又见面了,我是你们的朋友全栈君。
golang操作elasticsearch详解
直接上代码
package main
import (
"bytes"
"context"
"fmt"
"github.com/olivere/elastic/v7"
"log"
)
const IndexName = "test_index"
func main() {
IsDocExists("xxx", IndexName)
}
//获取Es客户端
func GetEsClient() *elastic.Client {
var buf bytes.Buffer
client, err := elastic.NewClient(
elastic.SetURL("http://127.0.0.1:9200/"),
//docker
elastic.SetSniff(false),
elastic.SetInfoLog(log.New(&buf, "ES-INFO: ", 0)),
elastic.SetTraceLog(log.New(&buf, "ES-TRACE: ", 0)),
elastic.SetErrorLog(log.New(&buf, "ES-ERROR: ", 0)),
)
if err != nil {
return nil
}
return client
}
//查看某文档是否存在,给定文档ID查询
func IsDocExists(id, index string) bool {
client := GetEsClient()
defer client.Stop()
exist, _ := client.Exists().Index(index).Id(id).Do(context.Background())
if !exist {
log
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/137689.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...