Server-Sent Events - CI/CD用語集の定義
Server-Sent Events(SSE)は、長寿命のHTTP接続を開き、その上でサーバーがテキストイベントをクライアントへストリーミングします。一方向であり、ライブフィードにはWebSocketより簡単です。
関連ガイド
WebSocket - CI/CD Glossary DefinitionA WebSocket is a persistent, full-duplex connection upgraded from HTTP, letting client and server push messag…
Long Polling - CI/CD Glossary DefinitionLong polling holds an HTTP request open until the server has data or a timeout hits, approximating push witho…
Chunked Transfer - CI/CD Glossary DefinitionChunked transfer encoding streams an HTTP response in pieces with no known Content-Length, so the server can…