Erste Seite Zurück Weiter Letzte Seite Übersicht Grafik
Non blocking sockets
Allows well scaling servers without threads
Not much locking overhead (=none)
Requires state machines
fcntl(socketfd, F_SETFL, O_NONBLOCK);
Needed to handle many sockets (threads are costly)