Is it possible to scale a Flask server?
I have a python server which uses Flask, when it gets a request from my web app, it does something according to the endpoint. The issue is that this something can take some time.
I would like to process multiple requests in parallel. In other words, scale it up.
When I send a request one after the other, it just waits for the first one to complete before attending the other, any way to run those in parallel?