hey I want to develope a chat client in rails .Please suggest me what i should do.? Thanks in advance amritpalpathak.blogspot.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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
I''d like some suggestions too. I heard about Juggernaut (http://juggernaut.rubyforge.org/) and RailsChat( http://code.google.com/p/railschat/), but I don''t know if these projects are active. Does anyone have any ideas? Thanks in advance. On Sat, Jul 9, 2011 at 1:35 AM, Amrit Pal Pathak <amritpalpathak1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> hey > I want to develope a chat client in rails .Please suggest me > what i should do.? > > Thanks in advance > > amritpalpathak.blogspot.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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. >-- Nielson Rolim nielson.rolim-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Jul 9, 5:35 am, Amrit Pal Pathak <amritpalpath...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> hey > I want to develope a chat client in rails .Please suggest me > what i should do.? >I wrote a long polling based system a few years ago, with a c++ server handling the long-lived connections using epoll/kqueue (you could also do this in ruby if you weren''t going to have too many connections). You might also want to look into websockets, there are a some ruby implementations of the server side bits around. There are also a variety of like http://www.ape-project.org/ which purport to insulate you from the vagaries of what browser supports what methods best (I haven''t used this) Fred> Thanks in advance > > amritpalpathak.blogspot.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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Probably the easiest (yes I know that might be very subjective) way of getting you running is to use Faye. Just google Faye github or something to get more infos. its also covered in one of the railscasts.com screencasts. Regards Stefano On Jul 9, 4:07 pm, Frederick Cheung <frederick.che...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Jul 9, 5:35 am, Amrit Pal Pathak <amritpalpath...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > hey > > I want to develope a chat client in rails .Please suggest me > > what i should do.? > > I wrote a long polling based system a few years ago, with a c++ server > handling the long-lived connections using epoll/kqueue (you could also > do this in ruby if you weren''t going to have too many connections). > You might also want to look into websockets, there are a some ruby > implementations of the server side bits around. There are also a > variety of likehttp://www.ape-project.org/which purport to insulate > you from the vagaries of what browser supports what methods best (I > haven''t used this) > > Fred > > > > > Thanks in advance > > > amritpalpathak.blogspot.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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
yep, I also realized one with Faye follwing the railscast "messagin with faye" was straight forward and works well also you want obviously do the necessary tom improve the user experience a little. On Jul 9, 5:11 pm, Stefano <stefano....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Probably the easiest (yes I know that might be very subjective) way of > getting you running is to use Faye. Just google Faye github or > something to get more infos. its also covered in one of the > railscasts.com screencasts. > > Regards > Stefano > > On Jul 9, 4:07 pm, Frederick Cheung <frederick.che...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: > > > > > > > > > On Jul 9, 5:35 am, Amrit Pal Pathak <amritpalpath...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > hey > > > I want to develope a chat client in rails .Please suggest me > > > what i should do.? > > > I wrote a long polling based system a few years ago, with a c++ server > > handling the long-lived connections using epoll/kqueue (you could also > > do this in ruby if you weren''t going to have too many connections). > > You might also want to look into websockets, there are a some ruby > > implementations of the server side bits around. There are also a > > variety of likehttp://www.ape-project.org/whichpurport to insulate > > you from the vagaries of what browser supports what methods best (I > > haven''t used this) > > > Fred > > > > Thanks in advance > > > > amritpalpathak.blogspot.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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.