gpt4 book ai didi

mongodb - 了解 Golang 上下文超时

转载 作者:IT老高 更新时间:2023-10-28 13:28:24 25 4
gpt4 key购买 nike

我无法理解如何检查上下文是否超过了超时设置的截止日期,或者我是否应该检查?

这是来自 mongo-go-driver 的片段:

client, err := NewClient("mongodb://foo:bar@localhost:27017")
if err != nil { return err }
ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second)
defer cancel()
err = client.Connect(ctx)
if err != nil { return err }

阅读此代码,我如何知道上下文是否超过了截止日期?从我天真地理解(或不理解)来看, err = client.Connect(ctx) 行会给我错误,包括超过期限(如果超过),因此我认为我什至不需要明确检查?

但是,当我浏览互联网以更好地了解上下文的工作原理时,我遇到了一些使用 select case 明确检查上下文的用法,如下所示(来自 http://p.agnihotry.com/post/understanding_the_context_package_in_golang/ 的代码片段):

//Use a select statement to exit out if context expires
select {
case <-ctx.Done():
fmt.Println("sleepRandomContext: Time to return")
case sleeptime := <-sleeptimeChan:
//This case is selected when processing finishes before the context is cancelled
fmt.Println("Slept for ", sleeptime, "ms")
}

我应该明确地检查它吗?如果不是,我应该什么时候使用显式检查?

最佳答案

问题第二部分中的 select 代码是 Connect 方法中的代码可能的样子。它正在检查 ctx.Done() 是否准备好发送。如果是,则上下文被取消,因为发生超时,或者因为调用了 cancel()

错误是值。这样对待他们。如果了解错误原因对您很重要(网络故障?意外数据?超时?),那么您应该进行检查并采取相应措施。如果无论原因如何,从错误中恢复都是相同的,那么检查错误就没有那么重要了。

关于mongodb - 了解 Golang 上下文超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53676949/

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