Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
甚至可以在tasks.py之外定义任务吗?
您可以在 之外定义任务tasks.py,您只需要告诉工作人员任务在哪里。您可以使用CELERY_INCLUDE设置(或 的-I参数celery worker)来做到这一点
tasks.py
CELERY_INCLUDE
-I
celery worker
如果您的意思是向工作人员发送任务源代码,那么这是一个更复杂的问题。它可以解决,但它会非常有限。