Use one websocket per client instance #2
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Right now when the client gets a TCP connection it opens a new Websocket connection just for that connection. This is pretty bad. It would be better to have a pool of websocket connections (of configurable size) that the client can send it's local client's data down.