[Twisted-Python] Newbie question: Is this possible with twisted?

Tim Bordemann t.bordemann at web.de
Wed Feb 24 16:06:38 EST 2010


Hi Reza.

> However, I'm going to suggest something different, which seems like a
> better fit for what you're trying to do. Check out Celery
> (http://celeryproject.org/) which is a distributed task queue. The
> idea is that you set up a queue system, like RabbitMQ, which implement
> a job queue via Celery. You write tasks as Python functions in a
> module somewhere. When a client connects, you issue a task, and return
> the task id back to the client. By and by the job is picked up by some
> worker, and the result is stored in some persistent database, like
> MySQL or Redis. Celery also has excellent integration with Django.

Great, this seems to be exactly what I am searching for. :)

Cheers,
Tim





More information about the Twisted-Python mailing list