이 http.HandlerFunc
中我得到了这个。但我的问题是:在应用超时上下文之后放置 defer cancel()
에 이해가 되나요?
하단 선택은 컨텍스트가 완료될 때까지 계속 듣기 때문입니다. 그리고 컨텍스트가 완료된 후에 지연이 실행됩니다. 그런데 그게 다 됐나요? :)
// Apply timeout context var cancel context.CancelFunc ctx, cancel = context.WithTimeout(ctx, time.Duration(time.Duration(match_route.timeout) * time.Second)) defer cancel() // <--- does this make sense go func(){ match_route.handler(w, r.WithContext(ctx)) cancel() }() select { case <-ctx.Done(): if ctx.Err() == context.DeadlineExceeded { http.Error(w, "Timeout", http.StatusRequestTimeout) } }
예, 제 생각에는 이것이 의미가 있다고 생각합니다. 실제로 defer cancel()
的目的是确保调用 cancel 函数来释放与上下文关联的资源,无论函数如何退出,在您的示例中, cancel()
函数被推迟到 http.HandlerFunc
完成后或上下文完成时执行,因此 go func()
负责使用提供的上下文执行 match_route.handler
函数,然后调用 cancel()
显式取消上下文,select
문을 사용하여 컨텍스트가 완료될 때까지 기다리고 마감 기한이 초과되어 컨텍스트가 완료되면 오류 응답이 반환됩니다!
위 내용은 defer cancel() 으로 이것이 의미가 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!