Re: websockets in django

2014-08-25 Thread Carlos Aguilar
gevent-socketio to use websockets with django app. Best Regards On Mon, Aug 25, 2014 at 10:20 AM, Avraham Serour wrote: > it seems that uwsgi supports websockets, has anyone experimented with that? > > using uwsgi is a fairly common and recommended way to deploy django, it > would be nice to a

Re: websockets in django

2014-08-25 Thread Avraham Serour
it seems that uwsgi supports websockets, has anyone experimented with that? using uwsgi is a fairly common and recommended way to deploy django, it would be nice to also use it for the ws part of the application, maybe memory savings or performance so I am curious about it but didn't have a chance

Re: websockets in django

2014-08-25 Thread Bill Freeman
+1 on tornado. I may be behind the times, but I don't think that the Django architecture lends itself to persistent connections. Also, Django is intended to run behind another server, such as Apachi, nginx, etc., and that server, too, would need to be amenable to persistent connections. This do

Re: websockets in django

2014-08-24 Thread İsrafil KARA
Hi, i think you use tornado. It's a simple way. On Aug 24, 2014 4:56 PM, "Rituparna Matkar" wrote: > Hi > > I am trying to finish a phonegap app with django as a backend. I want to > implement web sockets in this app. To give a use case, there are an array > of buttons that all the users can see,

websockets in django

2014-08-24 Thread Rituparna Matkar
Hi I am trying to finish a phonegap app with django as a backend. I want to implement web sockets in this app. To give a use case, there are an array of buttons that all the users can see, if one user makes any changes to the button (enable/disables) the change should be visible to other users