|
|
|
|
|
by SomeCallMeTim
3698 days ago
|
|
Not talking NOOPs. I'm talking multiple full round trips to the database per query. Node can render more NOOPs per second than that; I've heard of a well tuned Node server hitting 100k. But because of the async nature of the handling of responses, you don't need dozens or hundreds of threads to handle thousands of clients, and it's the threads that kill you. Unless you've just got an awful architecture, in which case that will kill you first. |
|