am sorry for this dumb question, but am really confused; and i hope you'll correct me where am wrong.
in the thread based servers (like Apache), i understand that for each client, a new 'worker' will be created for him to serve all his needs.
in the event driven (like Nginx and Tornado), this comes my confusion, espetially where there is a Not Thread Safe like the Python's GIL; from what i understand, there is ONE SINGLE LOOP that will handle ALL client requests, so as my dumb understanding, if there are 10 000 simultanous connections, i dont see how to serve ALL those 10 thousend requests!