slackbuilds/python/python3-celery
Arn0 1c7584196b
python/python3-celery: updated for version 5.3.6
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2023-11-30 20:34:18 +07:00
..
README
python3-celery.SlackBuild python/python3-celery: updated for version 5.3.6 2023-11-30 20:34:18 +07:00
python3-celery.info python/python3-celery: updated for version 5.3.6 2023-11-30 20:34:18 +07:00
slack-desc
versions.patch python/python3-celery: Updated for version 5.2.7. 2023-03-12 08:48:11 +07:00

README

Distributed Task Queue

Task queues are used as a mechanism to distribute work across threads or
machines.

A task queue's input is a unit of work, called a task, dedicated worker
processes then constantly monitor the queue for new work to perform.

Celery communicates via messages, usually using a broker to mediate
between clients and workers. To initiate a task a client puts a message
on the queue, the broker then delivers the message to a worker.

A Celery system can consist of multiple workers and brokers, giving way
to high availability and horizontal scaling.