Django How To Execute A Function Asynchronously I.e, Handover A Task To A Sub Process And Return Response
I am using django 2.0 and python 3.6. The user registration includes sending of a verification mail. And this mail sending process is taking longer and the user is kept waiting. Wh
Solution 1:
Most of the time you will use a task queue for this.
Celery has been around for a long time and it is well known and documented, but recently I'm moving all my stuff to TaskTiger
Post a Comment for "Django How To Execute A Function Asynchronously I.e, Handover A Task To A Sub Process And Return Response"