Golang에서 Long-Polling 요청 취소
http.Client를 사용하여 클라이언트 측 Long-Poll을 구현할 때 종종 이것이 바람직합니다. 요청을 조기에 취소할 수 있는 능력이 있습니다. 이는 별도의 고루틴에서 resp.Body.Close()를 수동으로 호출하여 달성할 수 있지만 표준적이고 우아한 솔루션은 아닙니다.
요청 컨텍스트를 사용한 취소
Golang에서 HTTP 요청을 취소하는 보다 관용적인 방법은 요청 컨텍스트를 사용하는 것입니다. 마감 기한이나 취소 기능이 포함된 컨텍스트를 전달하면 클라이언트 측에서 요청을 취소할 수 있습니다. 다음 코드는 요청 컨텍스트를 사용하여 긴 폴링 요청을 취소하는 방법을 보여줍니다.
import ( "context" "net/http" ) func main() { // Create a new HTTP client with a custom transport. client := &http.Client{ Transport: &http.Transport{ // Set a timeout for the request. Dial: (&net.Dialer{Timeout: 5 * time.Second}).Dial, TLSHandshakeTimeout: 5 * time.Second, }, } // Create a new request with a context that can be cancelled. ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) req, err := http.NewRequest("POST", "http://example.com", nil) if err != nil { panic(err) } req = req.WithContext(ctx) // Start the request in a goroutine and cancel it after 5 seconds. go func() { _, err := client.Do(req) if err != nil { // Handle the canceled error. } }() time.Sleep(5 * time.Second) cancel() }
cancel() 함수가 호출되면 요청이 취소되고 전송에 Dial 및 TLSHandshakeTimeout이 지정됩니다. 존중됩니다.
위 내용은 Go에서 장기 폴링 HTTP 요청을 어떻게 취소할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!