You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
server.py implements proxy, which use sockets in blocking mode, that's why it creates a pair of threads for every connection.
nb_server.py implements proxy, which use sockets in non-blocking mode, it creates N threads for connection load balancing.