What is point of communication if i run flask application with wsgi container (WSGI container gevent + flask application) and what is difference if i use this solution and if i run just flask applciation with app.run(Threaded=True) command.
If i understand correctly in first case..... web browser=>wsgi=>application
(five users,five threads from web browsers to WSGI => one thread from wsgi to application)
and in second case ... (web browser=> application) without WSGI container every user is one thread...
Can someone explain me if i mean it right and whats point of using WSGI ? Google did not give me answer...