Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
437 B

# Task Queues
Tasks queues receive tasks and their related data, runs them, then delivers their results. They can support scheduling and can be used to run computationally-intensive jobs in the background.
[Celery](https://docs.celeryproject.org/en/stable/) has support for scheduling and primarily has python support.
To learn more, visit the following links:
- [Celery - Distributed Task Queue](https://docs.celeryq.dev/en/stable/)