I am using celery for my async tasks, however, I am using Redis as backend broker. My current plan is to filter and manipulate data inside the backend and store it into django-db for viewing etc.
Is this the recommended way? Or I should use Django DB as backend results db and store all the raw data then filter and manipulate it into different tables?