【发布时间】:2020-06-08 12:57:39
【问题描述】:
我正在查看一些为 Django 设置 Redis(消息代理)+ Celery 的教程,但我对队列的工作方式有点困惑。我遵循的教程是https://hackernoon.com/asynchronous-tasks-with-celery-redis-in-django-3e00d3735686
- redis 有内置队列作为消息代理吗?或者队列是芹菜的一部分?
- 任务被推送到哪个队列? redis 队列还是 celery 队列?
In this diagram it looks like redis and celery have their own queues
【问题讨论】:
标签: python django redis celery