Real-time message passing to browser in Rails?

Has anyone had any success getting “realtime” message passed to the
browser in Rails? I’m wondering if there’s a helper or Prototype
snippet that can help pass messages to a “status” window.

Basically, I have an app that is doing system tasks, like running
command-line scripts and tailing logfiles. I want to show the output in
near-realtime, similar to what a user would see in a command-line
terminal window. Any ideas?

Thanks,
Nate W.
dangerrabbit.com

Haven’t used it personally, but it sounds like you want Comet…

On 1/24/07, Nate [email protected] wrote:

Thanks,
Nate W.
dangerrabbit.com

seth at subimage interactive

http://www.subimage.com
http://sublog.subimage.com

http://dev.subimage.com/projects/substruct

Nate wrote:

Has anyone had any success getting “realtime” message passed to the
browser in Rails? I’m wondering if there’s a helper or Prototype
snippet that can help pass messages to a “status” window.

Here’s my How To Chat post:

http://www.forbiddenweb.org/topic/130997/index.html

GMail reputedly chats by leaving the HTTP socket open. I wouldn’t
tweak my server (and the prototype Ajax objects) just for a Status
panel.

Use periodically_call_remote to repeatedly call the status action on
the server. That’s slow, and high-bandwidth, but completely stable. My
Chat post tells generally how.

Tip: Have one periodically_call_remote per page, and let it update
anything that needs updating, via render :update.


Phlip
http://c2.com/cgi/wiki?ZeekLand ← NOT a blog!!

Awesome, very nice, detailed chat post, thanks!

On 1/24/07, Nate [email protected] wrote:

Has anyone had any success getting “realtime” message passed to the
browser in Rails? I’m wondering if there’s a helper or Prototype
snippet that can help pass messages to a “status” window.

Basically, I have an app that is doing system tasks, like running
command-line scripts and tailing logfiles. I want to show the output in
near-realtime, similar to what a user would see in a command-line
terminal window. Any ideas?

If you happen to be using lighttpd…
http://www.refwell.com/blog/index.php/2007/01/25/full-dulpex-ajax-module-for-lighttpd/


Rick O.
http://weblog.techno-weenie.net
http://mephistoblog.com

Just a little thing to keep in mind:

Keeping network sockets open can quickly saturate your server’s
network stack and degrade performance to the point where no new
connections are accepted and the server grinds to a halt.

I am not sure what your user base is, but if you are expecting it to
be in the thousands, all connected with open sockets, then you should
really check what the upper socket limits for your server’s network
stack are.

At the very least you should kill inactive sockets after a timeout. I
have not used either of the solutions mentioned in the replies but it
is highly likely that the have an idle timeout setting.

-christos