job queue implementation for python

后端 未结 9 1566
生来不讨喜
生来不讨喜 2020-12-23 17:50

Do you know/use any distributed job queue for python? Can you share links or tools

相关标签:
9条回答
  • 2020-12-23 18:37

    Look at beanstalkd

    0 讨论(0)
  • 2020-12-23 18:37

    If you think that Celery is too heavy for your needs then you might want to look at the simple distributed task queue:

    • https://github.com/rojkov/taskqueue
    • http://simpletaskqueue.readthedocs.org/
    0 讨论(0)
  • 2020-12-23 18:43

    Pyres is a resque clone built in python. Resque is used by Github as their message queue. Both use Redis as the queue backend and provide a web-based monitoring application.

    http://binarydud.github.com/pyres/intro.html

    0 讨论(0)
提交回复
热议问题