1
I’m having a problem in an application that uses 3G and is very slow to keep the user waiting.
Does anyone know any library that I can send the information to the server and release the user?
The information is a batch of 100 sets of numbers that will be added in the bank one by one.
This is not an asynchronous code because I don’t need to inform the user that it was a mistake or a hit. I’ll just send the information to the server and that’s it.
Take a look at the Celery, because your problem in my understanding is getting Django to start a time-consuming processing outside the request-response cycle. That’s right?
– mgibsonbr