书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 607 个相关结果.
  • celery.schedules

    celery.schedules celery.schedules celery.schedules celery.schedules celery.schedules Schedules define the intervals at which periodic tasks should run. exception celery...
  • celery.bootsteps

    celery.bootsteps celery.bootsteps celery.bootsteps celery.bootsteps celery.bootsteps A directed acyclic graph of reusable components. class celery.bootsteps.Blueprint(s...
  • Celery Background Tasks

    Celery Background Tasks Install Configure An example task Run a worker Celery Background Tasks If your application has a long running task, such as processing some uploaded...
  • Celery Background Tasks

    Celery Background Tasks Install Configure An example task Run a worker Celery Background Tasks If your application has a long running task, such as processing some uploaded...
  • celery.concurrency

    celery.concurrency celery.concurrency celery.concurrency celery.concurrency celery.concurrency Pool implementation abstract factory, and alias definitions. celery.concu...
  • celery.worker

    celery.worker celery.worker celery.worker celery.worker celery.worker WorkController can be used to instantiate in-process workers. The worker consists of several comp...
  • celery.loaders

    celery.loaders celery.loaders celery.loaders celery.loaders celery.loaders Loaders define how configuration is read, what happens when workers start, when tasks are exec...
  • celery.result

    celery.result celery.result celery.result celery.result celery.result Task results/state and groups of results. class celery.result.ResultBase[源代码] Base class for all...
  • celery.app

    celery.app Proxies Functions Data celery.app Celery Application. Proxies Functions Data Proxies celery.app.default_app = <Celery default:0xb0ada2c> Functions ce...
  • 什么是 Celery?

    什么是 Celery? 什么是 Celery? Celery 是一个异步任务队列。你可以使用它在你的应用上下文之外执行任务。总的想法就是你的应用程序可能需要执行任何消耗资源的任务都可以交给任务队列,让你的应用程序自由和快速地响应客户端请求。 使用 Celery 运行后台任务并不像在线程中这样做那么简单。但是好处多多,Celery 具有分布式架构,使...