TCP Handshake - Definição do Glossário de CI/CD
Um TCP handshake é a troca de três vias (SYN → SYN-ACK → ACK) que estabelece uma conexão confiável antes de os dados serem enviados; seu custo de ida e volta é o motivo pelo qual connection pooling e keep-alive importam para chamadas de rede rápidas em CI.
Em CI
Cada download de dependência novo ou pull de registry paga um handshake; reutilizar conexões via keep-alive remove essa latência por requisição em escala.
Guias relacionados
TLS Handshake - CI/CD Glossary DefinitionA TLS handshake negotiates the cipher and exchanges keys to secure a connection after TCP connects, adding ro…
HTTP Keep-Alive - CI/CD Glossary DefinitionHTTP keep-alive reuses one TCP connection for multiple requests instead of reconnecting each time, removing h…
Connection Pool - CI/CD Glossary DefinitionA connection pool keeps open connections ready to reuse, so callers borrow one instead of paying handshake co…