From 274929070fba45ff79d277b0be03da3d323ddbe4 Mon Sep 17 00:00:00 2001 From: Tushar Mathur Date: Sun, 14 Jan 2024 18:01:08 +0530 Subject: [PATCH] docs: update client tuning --- docs/guides/client-tuning.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/docs/guides/client-tuning.md b/docs/guides/client-tuning.md index fcb0ce59a2..2d47bc8c3c 100644 --- a/docs/guides/client-tuning.md +++ b/docs/guides/client-tuning.md @@ -24,19 +24,12 @@ The version of the HTTP is decided by the server. So if the server only supports TCP is the underlying protocol that makes sure the data sent and received over the internet reaches its destination correctly and in order. -Before any data can be exchanged using HTTP, TCP establishes a connection between the client and server, like dialing a number before talking on the phone. We will see how to tune Tailcall's HTTP client to improve the performance of this connection. - -:::tip -You can learn more about TCP in detail [here](https://www.techtarget.com/searchnetworking/definition/TCP). -::: +Before any data can be exchanged using HTTP, TCP establishes a connection between the client and server, like dialing a number before talking on the phone. We will see how to tune Tailcall's HTTP client to improve the performance of this connection. You can learn more about TCP in detail [here](https://www.techtarget.com/searchnetworking/definition/TCP). ### QUIC (Quick UDP Internet Connections) QUIC is a newer protocol developed by Google. It's designed to make web communications faster and more efficient compared to TCP. It reduces connection establishment time, is better at handling packet loss, and supports multiplexed streams over a single connection, which prevents one slow request from holding up others. It is the foundation for HTTP/3. - -:::tip You can learn more about QUIC in detail [here](https://blog.cloudflare.com/the-road-to-quic). -::: ### Why Managing Connections is Important?