How to run celery on windows?

前端 未结 10 1011
逝去的感伤
逝去的感伤 2020-11-27 16:13

How to run celery worker on Windows without creating Windows Service? Is there any analogy to $ celery -A your_application worker?

10条回答
  •  爱一瞬间的悲伤
    2020-11-27 16:52

    I have run celery task using RabbitMQ server. RabbitMq is better and simple than redis broker

    while running celery use this command "celery -A project-name worker --pool=solo -l info" and avoid this command "celery -A project-name worker --loglevel info"

提交回复
热议问题