Goroutine Timeout
提供的函数 Find() 使用 Goroutine 发出一系列 HTTP 请求并处理它们的响应。然而,令人担忧的是,即使超过指定的超时时间,这些请求也会在后台继续运行。
潜在的 Goroutine 泄漏
不太可能存在 Goroutine 泄漏代码。当 Find() 函数返回超时时,主 Goroutine 继续运行,后台 Goroutine 实质上被放弃。
HTTP 请求取消
避免超时后发出请求,解决方案是为每个 HTTP 请求使用 context.Context。上下文允许您在发生超时时取消请求。
<code class="go">func Find() (interface{}, bool) { ctx, cancel := context.WithTimeout(context.Background(), 50*time.Millisecond) defer cancel() ch := make(chan Response, 1) go func() { data, status := findCicCode() ch <- Response{data: data, status: status} }() select { case response := <-ch: return response.data, response.status case <-ctx.Done(): return "Request timed out", false } }</code>
发生超时时,调用 cancel() 将取消 ctx 内创建的所有 HTTP 请求。这可以防止这些请求进行任何进一步的处理或消耗资源。
以上是如何防止 Goroutine 中 HTTP 请求超时后继续?的详细内容。更多信息请关注PHP中文网其他相关文章!