This document describes the current stable version of Celery (5.4). For development docs, go here. Tasks¶ Tasks are the building blocks of Celery applications. A task is a class that can be created out of any callable. It performs dual roles in that it defines both what happens when a task is called (sends a message), and what happens when a worker receives that message. Every task class has a uni
Celeryのドキュメント読みつつどういうのがあるのか公式のドキュメントを読みつつ自分的に咀嚼。 The primitives Chains Groups Chords Map & Starmap Chunks Map & Starmap, Chunksは調べてません。 Chains タスクを直列に実行する。後続のタスクは直前のタスクの実行結果を受け取る。 個々のタスクのシグネチャに注意すること。 from celery import chain # `add.s(4, 4)`の結果が`mul.s(8)`へ渡る。その結果が`mul.s(10)`へ渡る。 chain(add.s(4, 4), mul.s(8), mul.s(10))
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く