Top "Djcelery" questions

For questions about djcelery, the django-celery pluggable app for Celery integration with Django.

How to properly configure djcelery results backend to database

I'm trying to setup djangocelery to store task results in the databse. I set: CELERY_RESULT_BACKEND = 'djcelery.backends.database.…

django celery djcelery
Python Celery - How to call celery tasks inside other task

I'm calling a task within a tasks in Django-Celery Here are my tasks. @shared_task def post_notification(data,url): …

python django celery djcelery
Is it possible to show progress bar of django celery task?

I am using database backend in django celery. The task information is stored in a table called: celery_taskmeta in …

django celery django-celery djcelery