DEV Community

Discussion on: Explain Non-Blocking I/O Like I'm Five

Collapse
 
rhymes profile image
rhymes

Nice article! Blocking/non blocking can be tricky to define as you explained in the conclusion.

Node.js is single-threaded, yet can handle millions of connections with a couple of GB RAM without problems.

The example uses 16 GB of RAM :-D. Still impressive though.