Skip to content

Commit

Permalink
docs: update client tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Jan 14, 2024
1 parent 591ea50 commit 2749290
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions docs/guides/client-tuning.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand Down

0 comments on commit 2749290

Please sign in to comment.