고루틴을 사용하여 작업할 때 시간 초과 및 고루틴 관리를 고려하는 것이 중요합니다. 다음 코드 조각은 여러 HTTP 호출에 대한 결합된 시간 초과를 통합하는 함수를 보여줍니다.
<code class="go">func Find() (interface{}, bool) { 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 <-time.After(50 * time.Millisecond): return "Request timed out", false } }</code>
이 접근 방식은 시간 초과를 처리할 수 있는 수단을 제공하지만 HTTP 호출이 HTTP 호출이 종료된 후에도 백그라운드에서 계속될 수 있다는 우려가 있습니다. 제한 시간이 만료되었습니다. 이 문제를 해결하려면 취소에 대한 세부적인 제어를 제공하는 컨텍스트를 사용하는 것이 좋습니다.
<code class="go">// create a timeout or cancelation context to suit your requirements ctx, cancel := context.WithTimeout(context.Background(), time.Second) defer cancel() req, err := http.NewRequest("GET", location, nil) // add the context to each request and they will be canceled in unison resp, err := http.Do(req.WithContext(ctx))</code>
컨텍스트를 통합하면 HTTP 요청을 균일하게 취소하여 해당 요청이 백그라운드에서 실행 중인 상태로 남아 있지 않도록 할 수 있습니다. 이 기술은 고루틴 누출을 방지하고 코드 무결성을 유지하는 데 도움이 됩니다.
위 내용은 Go에서 고루틴 누출을 방지하고 시간 초과를 효과적으로 관리하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!