How to Use Celery in Django for Asynchronous and Scheduled Tasks: A Straightforward Guide
Briefly

In modern web development, the ability to handle time-consuming tasks asynchronously is crucial for enhancing the performance and responsiveness of web applications.
A Celery broker acts like a middleman or a bridge that connects your Django app to Celery workers. It sends tasks to workers and then returns the results back to your Django app.
Read at Djangocentral
[
|
]