詳情參見: 分布式佇列神器 celery
2) celery-4.1 使用者指南: task(任務)
3) celery-4.1 使用者指南: calling tasks(呼叫任務)
4) celery-4.1 使用者指南: canvas: designing work-flows(設計工作流程)
5) celery-4.1 使用者指南: workers guide (workers 指南)
6) celery-4.1 使用者指南: daemonization (系統守護程序)
7) celery-4.1 使用者指南: periodic tasks (定時任務)
8) celery-4.1 使用者指南: routing tasks (路由任務)
9) celery-4.1 使用者指南: monitoring and management guide (監測和管理指南)
10) celery-4.1 使用者指南: security (安全)
11) celery-4.1 使用者指南: optimizing (優化)
12) celery-4.1 使用者指南: debugging (除錯)
13) celery-4.1 使用者指南: concurrency (併發)
14) celery-4.1 使用者指南: signals (訊號)
15) celery-4.1 使用者指南:testing with celery (用 celery測試)
16) celery-4.1 使用者指南: extensions and bootsteps (擴充套件和bootsteps)
17) celery-4.1 使用者指南: configuration and defaults (配置和預設值)
官方文件:
分布式任務佇列Celery
celery 芹菜 是基於python開發的分布式任務佇列。它支援使用任務佇列的方式在分布的機器 程序 執行緒上執行任務排程。基本用法是在程式裡引用celery,並將函式方法繫結到task from celery import celery def add x,y return x y from t...
分布式佇列Celery入門
celery 是乙個簡單 靈活且可靠的,處理大量訊息的分布式系統,並且提供維護這樣乙個系統的必需工具。它是乙個專注於實時處理的任務佇列,同時也支援任務排程。celery 是語言無關的,雖然它是用 python 實現的,但他提供了其他常見語言的介面支援。網上找到一張用得最多的圖 下面針對圖中的每一部分...
Celery分布式任務佇列
celery是乙個簡單 靈活且可靠的,處理大量訊息的分布式系統 專注於實時處理的非同步任務佇列 同時也支援任務排程 celery的架構由三部分組成,訊息中介軟體 message broker 任務執行單元 worker 和任務執行結果儲存 task result store 組成。訊息中介軟體 ce...