in reply to Server-side Websocket implementations in non-event driven HTTP Server Environments
I think Mojolicious has a forking Websocket implementation in Mojo::Server::Daemon.
Personally, I like in-process Websockets, as I use them to communicate between clients. Usually I don't have an elaborate message queue schema set up, so distributing information is done easiest by keeping all clients connected to the same process. This is where AnyEvent comes in very handy for me.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Server-side Websocket implementations in non-event driven HTTP Server Environments
by unlinker (Monk) on Jun 09, 2013 at 02:44 UTC | |
by Corion (Patriarch) on Jun 09, 2013 at 06:57 UTC |