Flask - Performance Optimization
Consider this Flask route:
What will happen when users access '/wait'?
@app.route('/wait')
def wait():
import time
time.sleep(4)
return 'Finished'What will happen when users access '/wait'?
