Handling 1M websocket connections in Go
github.com
Handling 1M websocket connections in Go
1–10 of 68 posts
Re: Handling 1M websocket connections in Go
#2I want to sleep.
Re: Handling 1M websocket connections in Go
#3Re: Handling 1M websocket connections in Go
#4I thought you can make only 65k connections per port because of TCP limitations.
This means that in order to test 1M simultaneous connections, you would need to use at least 16 client IP addresses. Probably more.
Re: Handling 1M websocket connections in Go
#5I thought you can make only 65k connections per port because of TCP limitations.
Re: Handling 1M websocket connections in Go
#6I thought you can make only 65k connections per port because of TCP limitations.
Re: Handling 1M websocket connections in Go
#7Can someone make a comparison between this and the Elixir Phoenix 2m websocket conmections example. I want to sleep.
The other thing I'd be interested to see Elixir demonstrate would be doing a hot deployment to avoid triggering all 2m connections to try reconnect at the same time.
The other important note with the Phoenix example was that they were starting 3 processes for each socket (to supervisor, handle failures/reconnects) if I remember correctly.
Re: Handling 1M websocket connections in Go
#8Can someone make a comparison between this and the Elixir Phoenix 2m websocket conmections example. I want to sleep.
Re: Handling 1M websocket connections in Go
#9Can someone make a comparison between this and the Elixir Phoenix 2m websocket conmections example. I want to sleep.
Do you have a link to that Elixir one by any chance?