Where does Django-celery/RabbitMQ store task results?
问题 My celery database backend settings are: CELERY_RESULT_BACKEND = "database" CELERY_RESULT_DBURI = "mysqlite.db" I am using RabbitMQ as my messager. It doesn't seem like any results are getting stored in the db, and yet I can read the results after the task is complete. Are they in memory or a RabbitMQ cache? I haven't tried reading the same result multiple times, so maybe its a read once then poof! 回答1: CELERY_RESULT_DBURI is for the sqlalchemy result backend, not the Django one. The Django