Official appengine documentation says that if we set threadsafe property to true in app.yaml then appengine will server concurrent requests.
Official link: https://developers.google.com/appengine/docs/python/python27/newin27#Concurrent_Requests
Does it mean application will be faster (than 2.5) if we have threadsafe property to true? Official documentation/blog says so but i am looking for real world experiences.
At highlevel, How does it work internally? Will our application be initialized and spawn a new theread for each request?