Socket.io 1.x clustering without a sticky session?

Is there a way to group Socket.io without this sticky session using Redis?

+4
source share
1 answer

Thus, after studying other modules in real time, I finally used Primus , which allows me to use any engine in real time without any problems.

They do not provide a built-in real-time clustering method, but I ended up creating a separate application designed to handle real-time connections. It can handle up to 1000 concurrent users in real time without any problems.

0
source

All Articles