Optimizing your HttpClient usage - Nico Vermeir - NDC London 2026
NDC Conferences · 60:00
HttpClient looks easy, but in .NET the real cost is connection setup (DNS, TCP, TLS) and pool exhaustion — reuse a long-lived client or IHttpClientFactory, never using-dispose per call, and add status-code checks plus...