▲ | josephg 3 days ago | |
Well, tcp streams are purely sequential. It’s the ideal use case for a single process, since messages can’t be received out of order. There’s no computational advantage to “handling each message asynchronously” unless the message handling code itself does IO or something. And that’s not the responsibility of the websocket library. | ||
▲ | necrobrit 2 days ago | parent [-] | |
Good point! |