Friday, August 15, 2008

Juggernaut Push Server


Juggernaut is a Rails plugin that allows you to push information out to the client, without them having to specifically request it. For certain domains, a push server is an excellent solution. Juggernaut uses a small bit of Flash to open up a flashxmlsocket from the browser to the push server, and it subscribes to the service. My roommate Taelor has been playing around with it for a little while, and has put together a chat application that creates rooms off of Digg topics. Its called Shovel Chat. He has also made a few blog posts about Juggernaut and using it to create a chatroom with rails at his blog, and has posted the source code on GitHub(note that you will need to go through his blog posts and edit some of the gem's files...)


So, the way the chat app works is that when you request the show action for a chatroom, some flash gets sent to subscribe to the channel on Juggernaut. Juggernaut will then send you a list of all the people in the room. If you type in a message and hit enter, the message gets posted to your Rails app. Inside the controller, the message gets sent to the Juggernaut server, which then pushes the message out to anyone subscribe to that channel. You could achieve a similar effect using AJAX, but you would have to have each client polling the server for updates to the chatroom, but this would be really difficult to scale.


Anyway, I've gotten his source code installed on my machine and have begun playing around with it, and hope to start contributing to his chat_sandbox on github soon. Feel free to make your own fork of his code on github and start contributing, and stay tuned for more updates!

-Ralph

4 comments:

adrian said...

is it also possible to create dinamically new channels? and add a user dinamically to a channel? if not, are there alternatives to juggernaut???

RailsGuy said...

The problem with using Flash to do push is that it requires the users to have it installed which can be really annoying. There a few servers around that do native HTML/Javascript push like StreamHub Comet. It doesn't do AJAX-polling but uses some sort of iframe technique to do true push. Kudos on the Rails plugin - there should definitely be more plugins for doing push/comet in rails.

hotel sacramento ca said...

WOW!! Appreciate it. Is the best thing you can do! thanks for sharing this valuable information, good job

Aspiring Comic Artist And Illustrator said...

Hello mmate great blog post