[Answered ]-Djcelery forces the use of 'database' backend, how to properly bypass it?

2👍

Can’t you just set redis as CELERY_RESULT_BACKEND? See the docs for reference.

django-celery overrides default celery.backends.database for a good reason: you simply can’t use SQLAlchemy with Django ORM. I see no point in routing a database backend to redis.

Leave a comment