How Connection Pooling Fixes Network Latency in Android Applications
Draft in progress.
Why a new connection per request is expensive (TCP handshake plus TLS negotiation on every call), how connection pooling amortizes that cost by reusing warm connections, and how OkHttp’s pool, keep-alive, and HTTP/2 multiplexing cut tail latency in real Android apps.