1
Ask HN: How do you handle WebSocket connections reconnect problem?
There are few examples on HN, how to handle 1M to 10M websocket connections. I think it's a solved problem. Most of my connections will be idle for most of the time.
Now the real problem is how to make them production ready. If we add TLS, it will become super slow to connect new connections. I think per core can handle few hundred new connection with TLS. Reconnect can be faster.
How did you solve the TLS with websocket problem? What happens when 1 million connections get disconnected and try to reconnect at the same time? What is your reconnection rate per core?