Hi, I would like to introduce reverse ajax to one of my projects. Anyone has any opinions on what is the best approach for a serious deployment? Comet, Juggernaut, orbitd, cometd, ...? I would appreciate opinions on this issue. Thanks! -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
comopasta Gr wrote:> > I would like to introduce reverse ajax to one of my projects. > Anyone has any opinions on what is the best approach for a serious > deployment? Comet, Juggernaut, orbitd, cometd, ...? > > I would appreciate opinions on this issue.Client-polling is easy enough with periodically_call_remote. I don''t believe that Rails'' architecture would support Server-pushing. Maybe somebody will correct me though. HTH, Bill --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Tue, Sep 16, 2008 at 3:44 PM, Bill Walton <bill.walton-xwVYE8SWAR3R7s880joybQ@public.gmane.org> wrote:> > comopasta Gr wrote: >> >> I would like to introduce reverse ajax to one of my projects. >> Anyone has any opinions on what is the best approach for a serious >> deployment? Comet, Juggernaut, orbitd, cometd, ...? >> >> I would appreciate opinions on this issue. > > Client-polling is easy enough with periodically_call_remote. I don''t > believe that Rails'' architecture would support Server-pushing. Maybe > somebody will correct me though. > > HTH, > Bill > >I''ve used juggernaut in a few places now and it works great. Very simple to setup and run. I''d recommend staying away from any library that does this via persistent HTTP connections, as those are known to be quite resource heavy on both web browsers and web servers. Jason --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi Jason, Jason Roelofs wrote:> > On Tue, Sep 16, 2008 at 3:44 PM, Bill Walton <bill.walton-xwVYE8SWAR3R7s880joybQ@public.gmane.org>wrote:> > > > I don''t believe that Rails'' architecture would support Server-pushing. > > Maybe somebody will correct me though. > > I''ve used juggernaut in a few places now and it works great. Very > simple to setup and run.Thanks for correcting me! This looks _very_ interesting. Best regards, Bill --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Thanks guys! This requires extra investigation (from my side at least :-) Comparison between juggernaut and comet http://ajaxian.com/archives/juggernaut-comet-for-rails Juggernaut is good: http://railspikes.com/2007/6/27/juggernaut Juggernaut is bad: http://orbited.org/blog/2007/08/juggernaut-is-a-bad-idea/ There is also this cometd stuff: http://cometdproject.dojotoolkit.org/ Any thoughts will be helpfull! Cheers. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi, Does anyone have any opinion on the approach described here? http://www.danielcadenas.com/2008/08/reverse-ajax-and-prototype.html Cheers. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 20 Sep 2008, at 20:41, Pod Caster wrote:> Does anyone have any opinion on the approach described here? > http://www.danielcadenas.com/2008/08/reverse-ajax-and-prototype.htmlYou could also consider Juggernaut: http://juggernaut.rubyforge.org/ Best regards Peter De Berdt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---