<FromGitter>
<damianham> Let's say that I have this javascript code in a React SPA ⏎ ⏎ ```Sockets::Signal.send_signal("xyz", "update", data)``` ⏎ ⏎ that emits the 'data' to connected clients in channel 'xyz'. The way I am reading it, clients connected to the socket on process A will not get the data received in process B. Is that correct or is there interprocess communication so that when process B emits data on a socket channel
<FromGitter>
<drujensen> That is correct. We never implemented a redis shared memory solution for the websockets. You wouldn’t be able to spin up multiple boxes behind a load balancer either.
<FromGitter>
<drujensen> Something we will need to make the websocket solution viable IMO.