Nel breve capitolo What is Node di McLaughlin , scrive:
"Node has no blocks, no threads competing for the same resource (Node is happy to just let things happen however they happen), nothing that has to start up upon request. Node just sits around waiting (quite literally; unused Node responders are sleeping). When a request comes in, it’s handled. This results in very fast code, without uber- programmers writing the server-side behavior."
Anche se penso che stia scegliendo PHP qui - da quello che ho capito non c'è un modo per PHP di not richiamare nuovi riferimenti ai suoi database, file, ecc, ogni volta che una pagina php è caricato - è molto diverso dalle altre tecnologie web? Prendi in considerazione Django / Flask per esempio o un semplice server threaded Python usando metodi incorporati - è è davvero diverso dai vantaggi no-block di Node? Si esegue un programma e si lega un socket, eseguendo la funzione solo se necessario. (Non lo fa anche Java?)