[推薦] 網頁即時通訊的技術
Source
https://rxdb.info/articles/websockets-sse-polling-webrtc-webtransport.html
Summary
本文比較了現有所有的網路即時通訊技術,包括 WebSockets, SSE, Polling, WebRTC, WebTransport,並點出限制與效能比較
WebRTC 是個標準,以下總結不包含
- 只有 WebSockets 與 WebTransport 是雙向通訊
- 最多 6 個連線,雖然走 HTTP2/3 可以避開此限制,但仍有 SETTINGS_MAX_CONCURRENT_STREAMS 上限
- 在手機上連線並不會持續開啟
- 企業很常會因為 proxy 或 firewall 問題而無法使用 WebSockets
- Latency: WebTransport ?= WebSockets < SSE < Polling
- Throughput: WebTransport ?= WebSockets < SSE < Polling
- Scalability: SSE > WebTransport ?= WebSockets > Polling
- SSE 在大多數需要 server 推送的場景較簡單,因為是走 HTTP
發佈時間
2024-3-19