gpt4 book ai didi

firebase - 为要存储的每个操作创建新客户端?

转载 作者:行者123 更新时间:2023-12-01 22:23:03 26 4
gpt4 key购买 nike

我在firestore Go Docs中看到了类似的示例。我们应该为每个要存储的操作创建一个如下所示的客户端,还是可以在应用程序启动期间创建一个客户端并使用同一客户端执行操作?请告诉我。

ctx := context.Background()
client, err := firestore.NewClient(ctx, "project-id")
if err != nil {
// TODO: Handle error.
}
defer client.Close()

type State struct {
Capital string `firestore:"capital"`
Population float64 `firestore:"pop"` // in millions
}

wr, err := client.Doc("States/Colorado").Create(ctx, State{
Capital: "Denver",
Population: 5.5,
})
if err != nil {
// TODO: Handle error.
}
fmt.Println(wr.UpdateTime)

最佳答案

否。创建一次客户端,然后重新使用同一客户端。有关此帖子的更多详细信息-Should a Firestore client be created per a request with Google App Engine?

关于firebase - 为要存储的每个操作创建新客户端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61848173/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com