Do you know/use any distributed job queue for python? Can you share links or tools
|
|
there are a couple of python rabbitmq clients - see this thread for instance. |
||
|
|
|
|
You probably want to look at multiprocessing's Queue. Included in Python 2.6, get it on PyPI for earlier versions of Python. Standard library documentation: http://docs.python.org/library/multiprocessing.html On PyPI: http://pypi.python.org/pypi/multiprocessing |
||
|
|
|
|
In addition to multiprocessing there's also the Celery project, if you're using Django. |
||||
|
|
|
There's also "bucker" by Sylvain Hellegouarch which you can find here: It describes itself like this:
|
||
|
|
|
|
Look at beanstalkd |
||
|
|
