摘要: 示例代码 创建schedule_tasks.py文件 from celery import Celery from celery.schedules import crontab app = Celery("SchedulerTasks", broker='pyamqp://admin:admin@ 阅读全文
posted @ 2020-02-15 23:05 Vincen_shen 阅读(1140) 评论(2) 推荐(0) 编辑
摘要: 参考文档:https://www.rabbitmq.com/install-rpm.html 1. 首先需要安装ErLang # yum install -y wget epel-release # wget https://github.com/rabbitmq/erlang-rpm/releas 阅读全文
posted @ 2020-02-15 22:50 Vincen_shen 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.jianshu.com/p/7029a449b4de Celery架构 1.用好celery beat 如果你想更好的管理项目的定时任务,可以用celery beat代替crontab管理。celery不仅支持动态的异步任务(通过delay调用),也支持定时任务执行。当 阅读全文
posted @ 2020-02-15 21:29 Vincen_shen 阅读(895) 评论(2) 推荐(0) 编辑