HTTP Keep-Alive - Definição do Glossário de CI/CD
O HTTP keep-alive (conexões persistentes) mantém uma conexão TCP aberta para atender várias requisições HTTP em sequência, evitando um novo handshake TCP+TLS por requisição - um grande ganho de velocidade para passos que fazem muitas chamadas ao mesmo host.
Guias relacionados
Connection Pool - CI/CD Glossary DefinitionA connection pool keeps open connections ready to reuse, so callers borrow one instead of paying handshake co…
TCP Handshake - CI/CD Glossary DefinitionA TCP handshake is the three-step SYN, SYN-ACK, ACK exchange that opens a reliable connection before any data…
Request Timeout - CI/CD Glossary DefinitionA request timeout caps total time waiting for an operation before giving up, so a stuck call fails fast inste…