Redis – How to run parallel tasking with celery django?
I am looking to run tasks in parallel with django celery. Let's say the following task: @shared_task(bind=True) def loop_task(self): for i in range(10): time.sleep(1) print(i) return "done" Each time a view is loaded then this task must be executed :…