salep
salep

Reputation: 1380

Socket.io and Redis pub/sub

I want to use socket.io, but I'll be running multiple instances of my app, so that's where things get interesting.

Have I got that right, is there something wrong with this approach?

Upvotes: 1

Views: 947

Answers (1)

Jason Livesay
Jason Livesay

Reputation: 6377

Sounds about right probably except are you sure you need multiple instances of your Node app on different ports? Because you might be able to handle more load than you would assume with one server and there are ways to separate out different communications channels with socket.io.

Upvotes: 1

Related Questions