Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • Also, if i wanted my node application to behave like a traditional server i could just start a new child process with every request, right? Commented Jan 24, 2013 at 8:12
  • That would defeat the purpose of node, though. If it is I/O heavy, a single thread can handle lots of concurrent requests. When you write for node, you already pay the mental cost of all these callbacks, that investment would be wasted. Commented Jan 24, 2013 at 8:19
  • It was just a thought experiment, to see if i understood it correctly, i'm not going to do that:) Commented Jan 24, 2013 at 8:34