Live data from Hacker News

Node.js cluster versus JXcore multithread

stackoverflow.com

1–7 of 7 posts

Re: Node.js cluster versus JXcore multithread

#2
You can partially mitigate the risks of single threaded Node by using clustering (although it's still tagged an experimental feature) [1].

Also, these worker threads can be made to respawn on a shutdown caused by - let's say - an unhandled exception as [2].

[1] http://nodejs.org/api/cluster.html

[2] https://nadeesha.silvrback.com/setting-up-multiple-worker-th...

Re: Node.js cluster versus JXcore multithread

#5

You can partially mitigate the risks of single threaded Node by using clustering (although it's still tagged an experimental feature) [1]. Also, these worker threads can be made to respawn on a shutdown caused by - let's say - an unhandled exception as [2]. [1] http://nodejs.org/api/cluster.html [2] https://nadeesha.silvrback.com/setting-up-multiple-worker-th...

Well by experimental feature the Node.js team means that the API to access clustering features isn't set in stone - not the stability of the code.

Re: Node.js cluster versus JXcore multithread

#7
post #6
post #3

I'm curious how either of these compare to say Passenger?

how can Passenger help with multi-threading/workers/... ? if a Passenger dev is nearby... i'm curious about it.

Passenger can manage multiple node processes for the same "app" automatically.

So while it isn't multi-threaded it can achieve some of the same goals (better use of multiple cores to serve more requests)