美文网首页
celery学习笔记

celery学习笔记

作者: 暂时还没有昵称2222 | 来源:发表于2017-03-31 11:23 被阅读14次

    http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html#application

    里面的代码:

    from celery import Celery
    
    app = Celery('tasks', broker='redis://127.0.0.1:6379/0')
    
    @app.task
    def add(x, y):
        return x + y
    

    app可以叫任何名字, 比如celery, xyz 等等, 启动方式都一样

    celery -A tasks worker --loglevel=info
    

    相关文章

      网友评论

          本文标题:celery学习笔记

          本文链接:https://www.haomeiwen.com/subject/lpomottx.html