Hello,
How to handle multiple REST Api requests from different users at same time in django
Thanks
Hello,
How to handle multiple REST Api requests from different users at same time in django
Thanks
You don't need to do anything special for that. However, since you have a free account, you only have one worker, so parallel requests will be placed in a queue and handled one at a time by the worker.
thanks