Earlier quoted context omitted.
Yes and no: There's still a rather large latency improvement even when you're using plain HTTP (not that you should go without encryption). I was very curious so I asked AI to explain why websockets would have such lower latency than regular HTTP and it gave some (uncited, but logical) reasons: Once a WebSocket is open, each message avoids several sources of delay that an HTTP request can hit—especially on mobile. Th…
Wow. Talk about inefficiency. It just said the same thing I did, but using twenty times as many characters. >Yes and no: There's still a rather large latency improvement even when you're using plain HTTP (not that you should go without encryption). Of course. An unencrypted HTTP request takes a single roundtrip to complete. The client sends the request and receives the response. The only additional cost is to set up…
/s