1. 首页
  2. 数据库
  3. 其它
  4. Celery简单使用&在项目中的运用

Celery简单使用&在项目中的运用

上传者: 2020-12-31 13:04:30上传 PDF文件 51.52KB 热度 10次
celery简单使用 安装celery 安装celery: pip3 install celery 安装redis 创建tasks.py文件进行验证 from celery import Celery import time app = Celery('TASK', broker='redis://localhost', backend='redis://localhost') @app.task def add(x, y): print("running..add.", x, y) return x + y @app.task
用户评论