I developed a Django application which requires the server push (or comet) for the further enhancement. I first had successfully implemented the server push using the "orbited" which worked great in all the major browsers except the IE (yeah I know... this IE is screwing my life once again). Although the significance of the IE has been reduced greatly, I would still love to implement the server push that will work in ALL major platforms.
I have been googling for days and here are some options I found.
- Using evserver (https://code.google.com/p/evserver/)
- Using Django + Tornado framework
It seems like using the Django + Tornado platform is more ideal in the long run, but I couldn't really find a good example from which I can learn how to implement the server push combining two frameworks. The only example I found was
django-tornado-demo (https://github.com/bdarnell/django-tornado-demo/tree/master/testsite)
However, I am not sure if this project even handles the server push mechanism or otherwise, lacks some explanation.
Can anybody please direct me to a good example of the demo project that combines Django and Tornado together and actually implements the server push mechanism? Also, any information regarding this topic will be highly appreciated.
Thank you very much in advance.