|
|
|
|
|
by efecan0
345 days ago
|
|
I started with WebSocket over TCP for practical reasons: * Works everywhere today (browsers, LB, PaaS) with zero extra setup.
* One upgrade -> binary frames; no gRPC/proto toolchain or HTTP/3 infra needed.
* Simple reliability: TCP handles ordering; I add optional QoS2 on top.
* Lets me focus on session/room/middleware features first; transport is swappable later. QUIC / gRPC-HTTP/3 is on the roadmap once the higher-level API stabilises. |
|