Reputation: 28154
What are the factors you would consider when choosing between Socket.io and Pusherapp? Important considerations include: integration with existing systems like rails/django, ease of setup, ease of development.
Upvotes: 15
Views: 4877
Reputation:
There are a few differentiating factors, these are:
There's basically a few different use-cases for websockets, and at present no hosted solution can offer you two of those things. The current use cases I can think of are:
--[ WebSocket ]->
Clients<-[ WebSocket ]--
Clients<-[ WebSocket ]->
ClientsServices like PusherApp target the first use-case, as it's fairly difficult to support the other two options with a hosted service. (Read: while it's difficult, it's just a bit impractical and doesn't give you the full benefits of using websockets.)
Upvotes: 9