0
Hello, I’m new to developing Python applications using Flask, developed an application using Python and Flask, hosted the application on the Google Cloud App Engine, and came across a problem, in some moments when more than one user is using the same feature of my application it is giving error, I recently found a tutorial giving a hint to enable the following command line in my application
app.run(host='0.0.0.0', port=int(port), threaded = True)
I wonder if for an application with an auto volume request only this procedure would solve the problem ? which would be a good practice for this kind of development ?.