After spending two entire days on this I'm still finding it impossible to understand all the choices and configurations for Comet in Python. I've read all the answers here as well as every blog post I could find. It feels like I'm about to hemorrhage at this point, so my utmost apologies for anything wrong with this question.

I'm entirely new to all of this, all I've done before were simple non-real-time sites with a PHP/Django backend on Apache.

My goal is to create a real-time chat application; hopefully tied to Django for users, auth, templates, etc.

Every time I read about a tool it says I need another tool on top of it, it feels like a never-ending chain.

First of all, can anybody categorize all the tools needed for this job?
I've read about different servers, networking libraries, engines, JavaScripts for the client side, and I don't know what else. I never imagined it would be this complex.

Twisted / Twisted Web seems to be popular, but I have no idea to to integrate it or what else I need (guessing I need client-side JS at least).

If I understand correctly, Orbited is built on Twisted, do I need anything else with it?

Are Gevent and Eventlet in the same category as Twisted? How much else do I need with them?

Where do things like Celery, RabbitMQ, or KV stores like Redis come into this? I don't really understand the concept of a message queue. Are they essential and what service do they provide?

Are there any complete chat app tutorials I should look at?

I'll be entirely indebted to anybody who helps me past this mental roadblock, and if I left anything out please don't hesitate to ask. I know it's a pretty loaded question.

link|improve this question
Have you taken a look at this? It seems to have all the source required for the job. rkblog.rk.edu.pl/w/p/django-and-comet – jbcurtin Apr 10 '11 at 20:49
@jbcurtin Thanks a lot, that's probably the best article I've read. Orbited doesn't seem to be too well-maintained, are there many similar projects? I'm still having trouble knowing if I need to use anything else with that (especially since I want all the messages persistent in a database); like do I still need to know all about Twisted itself? – XOR Apr 10 '11 at 22:28
I don't think you're going to have much luck employing django to complete this task. The closet thing I could find was django evserver. Twisted might be the way to go, in the end comet is just suspending a thread to keep it open. You'd have to kill the entire django life-cycle to accomplish this. – jbcurtin Apr 11 '11 at 22:17
@jbcurtin Also had a look at that. Do you mean using Twisted by itself? I really like Django as a framework for auth/templates/etc., would be convenient to have all those with me. – XOR Apr 13 '11 at 19:01
feedback

2 Answers

You could use Socket.IO. There are gevent and tornado handlers for it. See my blog post on gevent-socketio with Django here: http://codysoyland.com/2011/feb/6/evented-django-part-one-socketio-and-gevent/

link|improve this answer
That posts makes it seems really easy, thanks! Just tried to follow along but I'm having some problems installing. Look forward to trying it when (if!) I work it out. – XOR Apr 13 '11 at 19:04
feedback

I feel your pain, having had to go through the same research over the past few months. I haven't had time to deal with proper documentation yet but I have a working example of using Django with socket.io and tornadio at http://bitbucket.org/virtualcommons/vcweb - I was hoping to set up direct communication from the Django server-side to the tornadio server process using queues (i.e., logic in a django view pushes a message onto a queue that then gets handled by tornadio which pushes a json encoded version of that message out to all interested subscribers) but haven't implemented that part fully yet. The way I've currently gotten it set up involves:

  1. An external tornado (tornadio) server, running on another port, accepting socket.io requests and working with Django models. The only writes this server process makes to the database are the chat messages that need to be stored. It has full access to all Django models, etc., and all real-time interactions need to go directly through this server process.
  2. Django template pages that require real-time access include the socket.io javascript and establish direct connections to the tornadio server

I looked into orbited, hookbox, and gevent but decided to go with socket.io + tornado as it seemed to allow me the cleanest javascript + python code. I could be wrong about that though, having just started to learn Python/Django over the past year.

link|improve this answer
Great answer, thanks. Will check out Tornadio and your code. I'm also new to Python/Django so I'm open to all suggestions! – XOR Apr 13 '11 at 19:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.