This seems very impressive, but I wonder why we would want to switch to it from socket.io in our use case. We have built an open source platform that takes care of all the usual stuff you need when building realtime social apps. From the client side caching down to the pubsub, message ordering, security, and pushing updates via socket.io back to the client and updating the caches. It is designed to work in a distribu…
I'm the main author of SC. Your system does sound similar to SC - It seems to be a pretty standard realtime architecture - Those who started building their realtime systems with Socket.io (as you did) often end up with something similar to what you describe except it takes a lot of work to get there... A lot of people who use SC decided to make the switch because they started implementing their own pub/sub stack (as…
Show HN: SocketCluster.io – flexible open-source real-time server with pub/sub
11–20 of 41 posts
Re: Show HN: SocketCluster.io – flexible open-source real-time server with pub/sub
#12From personal experience -- switching from socket.io to socketcluster.io for our conferencing platform was a life saver. Its so much more stable & performant its crazy. We also use it to run our webrtc video chat platform which works great as well. Cant say enough good things about this.
Should say that we horizontally scale this thing pretty heavily using the sc-redis module. Elasticache + ELB + 4 EC2 Instances = support for 5000+ person conferences :D
Re: Show HN: SocketCluster.io – flexible open-source real-time server with pub/sub
#13How is this different than this? https://news.ycombinator.com/item?id=11071916
Re: Show HN: SocketCluster.io – flexible open-source real-time server with pub/sub
#14Re: Show HN: SocketCluster.io – flexible open-source real-time server with pub/sub
#15How is this different than this? https://news.ycombinator.com/item?id=11071916
I was wondering the same. What are the odds of two very similar projects with nearly identical headlines appearing on HN at nearly the same time?
Re: Show HN: SocketCluster.io – flexible open-source real-time server with pub/sub
#16Interesting these are coming around now. Some services (i.e. Pubnub) have been doing this (for money) for a long time and what I noticed were at the end of the day, the use cases were actually rather limited. Apart from stock quotes, bitcoin quotes and multiplayer games - polling just isn't that bad. And it's actually a very good place to start when developing as it's simple.
Re: Show HN: SocketCluster.io – flexible open-source real-time server with pub/sub
#17This seems very impressive, but I wonder why we would want to switch to it from socket.io in our use case. We have built an open source platform that takes care of all the usual stuff you need when building realtime social apps. From the client side caching down to the pubsub, message ordering, security, and pushing updates via socket.io back to the client and updating the caches. It is designed to work in a distribu…
I'm the main author of SC. Your system does sound similar to SC - It seems to be a pretty standard realtime architecture - Those who started building their realtime systems with Socket.io (as you did) often end up with something similar to what you describe except it takes a lot of work to get there... A lot of people who use SC decided to make the switch because they started implementing their own pub/sub stack (as…
Re: Show HN: SocketCluster.io – flexible open-source real-time server with pub/sub
#18Re: Show HN: SocketCluster.io – flexible open-source real-time server with pub/sub
#19Interesting these are coming around now. Some services (i.e. Pubnub) have been doing this (for money) for a long time and what I noticed were at the end of the day, the use cases were actually rather limited. Apart from stock quotes, bitcoin quotes and multiplayer games - polling just isn't that bad. And it's actually a very good place to start when developing as it's simple.
Re: Show HN: SocketCluster.io – flexible open-source real-time server with pub/sub
#20Does this support Elasticsearch?