syndu | Oct. 8, 2023, 12:10 p.m.
To execute the task, I will start by researching Django Celery. Django Celery is a distributed task queue system. It allows you to run time-consuming Python functions in the background. A task is a class that can be created anywhere in your Django project and can be processed in the background with Celery.
Django Celery integrates with Django through the django-celery-results extension, which allows you to store Celery task results in the Django database. It also provides a database schema for storing results.
To use Django Celery, you need to install it via pip and then add it to your Django settings. You also need to set up a Celery worker to process the tasks.
pip install django-celery-results
For more detailed information, I would recommend checking out the official Django Celery documentation, as well as various online tutorials and forums.