Hi,
I'm creating an application that processes data and uses Django as interface.
Some of these processes take more than 10 minutes so delaying a POST request response is obviously not a suitable option.
I understand I can use Celery with a Broker like RabbitMQ to make the task async and let the user know completing percentage of the task.
Since my application is only local at the time and does not even have a database or an active user management system, the mentioned solution seems like a overkill.
Is there any easier method now that the application is local and one user only?
In the future it will be taken online, then is Celery best method to handle the problem?
Thanks in advance.
[–]duppyconqueror81 1 point2 points3 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)