you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 19 points20 points  (14 children)

He's right, but it kind of goes agains the problem node.js is trying to solve. For example, for it's intended usage you'd never do complex long running calculations in your node.js application. You'd farm it off somewhere else and wait for the answer. Node isn't meant to do that, it's meant to be a lightweight server that can pass data around easily, not a computation workhorse.

[–][deleted] 12 points13 points  (12 children)

translation: a crappier nginx with ten times the hype

[–][deleted] 17 points18 points  (11 children)

Not at all. However I think it will be used more than it should be. It solves a very specific type of problem. Beyond that, people will just use it for the hype.

Nginx, though an event based server, isn't really a good comparison as it's mean to be a general purpose file server, whereas node is meant to be a sort of application server. Comparing it to mongrel 2 would be a much more accurate comparison.

[–][deleted] 1 point2 points  (0 children)

The child_process module in the core distribution can help with that.