WebSocket - CI/CD Glossary Definition
A WebSocket upgrades an HTTP connection into a persistent, bidirectional channel so client and server exchange messages freely without re-requesting. It underpins chat and live dashboards.
Related guides
Server-Sent Events - CI/CD Glossary DefinitionServer-Sent Events stream one-way updates from server to browser over one long-lived HTTP connection, simpler…
Long Polling - CI/CD Glossary DefinitionLong polling holds an HTTP request open until the server has data or a timeout hits, approximating push witho…
gRPC - CI/CD Glossary DefinitiongRPC is a high-performance RPC framework using HTTP/2 and Protocol Buffers, supporting streaming and code-gen…