Socketcluster: Highly scalable pub/sub and RPC SDK
socketcluster.io
Socketcluster: Highly scalable pub/sub and RPC SDK
1–8 of 8 posts
Re: Socketcluster: Highly scalable pub/sub and RPC SDK
#2Re: Socketcluster: Highly scalable pub/sub and RPC SDK
#3Re: Socketcluster: Highly scalable pub/sub and RPC SDK
#4Re: Socketcluster: Highly scalable pub/sub and RPC SDK
#5Re: Socketcluster: Highly scalable pub/sub and RPC SDK
#6elixir has an even better offering baked into phoenix. unlike node which is limited to 1 process and necessitating a complex IPC cluster, erlang's vm can use all cpus on the host as well as connect different machines. The end result is a much more robust websocket solution that can relay state to whichever machine resumes the connection.
Re: Socketcluster: Highly scalable pub/sub and RPC SDK
#7Re: Socketcluster: Highly scalable pub/sub and RPC SDK
#8elixir has an even better offering baked into phoenix. unlike node which is limited to 1 process and necessitating a complex IPC cluster, erlang's vm can use all cpus on the host as well as connect different machines. The end result is a much more robust websocket solution that can relay state to whichever machine resumes the connection.
Are you talking about channels or some other concept? https://hexdocs.pm/phoenix/channels.html
yes channels. I used them to power the websockets system for my startup. workes 100% as advertised out of the box with no special configuration. Handles thousands of messages per hour at the moment.