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



_______________________________________________
Twisted-Python mailing list
[email protected]
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Reply via email to