Re: django and websockets in phonegap app

2014-08-25 Thread zubair alam
I think server should notify all the clients about the change in states whenever a client has changed shared states. I guess in your solution, client is asking server weather there is some change in the shared states or not, which is not a correct approach. On Sunday, August 24, 2014 2:54:22 PM

django and websockets in phonegap app

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

Re: Django and Websockets

2013-07-05 Thread Bill Freeman
I have had good results with tornado (does WebSockets out of the box, and I like having only one thread). But socketio's JS side has the advantage (as I understand it) of working on browsers that don't yet do WebSockets, falling back to older push approaches as necessary. So if your market includ

Re: Django and Websockets

2013-07-04 Thread Nevio Vesic
This one as well works just fine :) https://gevent-socketio.readthedocs.org/en/latest/ It's as well very easy to implement it. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send

Django and Websockets

2013-07-04 Thread Dario Lopez Padial
Hi, I would like to use websockets in Django, but I have many options.. - https://github.com/stephenmcd/django-socketio - https://github.com/clemesha/hotdot - https://github.com/gregmuellegger/django-websocket - tornado? I do not worry to have 2 servers (django server and asynchron