Asynchronous Tasks With Django and Huey
08 Nov 2020I was working on a project and to achieve some results I wanted it to run some background process. It has to run outside the request-response cycle of request. When it comes to run async code in python, we generally use a task queue to achieve it.
Celery is the mostly used in the community and I’ve been already using it on other projects at work. But task was to run a simple task...
Read more...