yep, but you clearly have just started documenting and have a lot of ideas going around. as far as message passing between processes is concerned, you mentioned a lot of good "players". as far as message passing in a web application, there are not so many: - ajax (bi-directional, long-polling) - sse (one direction only, but you can still pass from client to server with ajax) - websocket (bi-directional) one nice implementation that abstracts away the support of the "x" technology is socket.io : if you want to code something that works accross different browsers types and versions, go for that route. I'd ditch zeromq, ampq and xmpp if you need to have a something working into the browser: it's true that there are js clients for those but the amount of boilerplate required would cripple your productivity.
On Sunday, April 7, 2013 4:03:58 PM UTC+2, Arnon Marcus wrote: > > 10x Niphlod > Have you read my previous comment? the one just before the one you > commented on? > -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

