Django Celery教程:跟随高手一步步掌握任务队列?
- 内容介绍
- 文章标签
- 相关推荐
本文共计1377个文字,预计阅读时间需要6分钟。
Celery官方文档:- 英文版:[http://docs.celeryproject.org/en/latest/index.](http://docs.celeryproject.org/en/latest/index.)- 中文版:[http://docs.jinkan.org/docs/celery/](http://docs.jinkan.org/docs/celery/)
Celery
官方
Celery 官网:www.celeryproject.org/
Celery 官方文档英文版:docs.celeryproject.org/en/latest/index.html
Celery 官方文档中文版:docs.jinkan.org/docs/celery/
Celery架构
Celery的架构由三部分组成,消息中间件(message broker)、任务执行单元(worker)和 任务执行结果存储(task result store)组成。
消息中间件
Celery本身不提供消息服务,但是可以方便的和第三方提供的消息中间件集成。
本文共计1377个文字,预计阅读时间需要6分钟。
Celery官方文档:- 英文版:[http://docs.celeryproject.org/en/latest/index.](http://docs.celeryproject.org/en/latest/index.)- 中文版:[http://docs.jinkan.org/docs/celery/](http://docs.jinkan.org/docs/celery/)
Celery
官方
Celery 官网:www.celeryproject.org/
Celery 官方文档英文版:docs.celeryproject.org/en/latest/index.html
Celery 官方文档中文版:docs.jinkan.org/docs/celery/
Celery架构
Celery的架构由三部分组成,消息中间件(message broker)、任务执行单元(worker)和 任务执行结果存储(task result store)组成。
消息中间件
Celery本身不提供消息服务,但是可以方便的和第三方提供的消息中间件集成。

