-
Notifications
You must be signed in to change notification settings - Fork 30.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any plan to support multi-thread in io.js? #241
Comments
I sincerely hope not. |
Well, it already supports multithreading with the |
Spawn multiple node processes if you need this. |
io.js name kind of suggests what it is for |
@brendanashworth +1, exactly what that module is meant to do |
multi-event-loops maybe useful to us rather than threads, because most of users of node/io knows what the event loop is, but doesn't know what a thread does act or just a bit bit acknowledge :( |
Please don't. |
I'll close this, there isn't anything directly actionable. io.js may someday add multi-isolate support (what JX does too, I think) but that won't be hugely different from what you can do today with the child_process and cluster modules; it's still going to be share-nothing with explicit message passing. |
Yes. Docs : http://jxcore.com/docs/jxcore-feature-multitasking.html |
Glad to see the work module is now offically implemented in io.js. Thank you! |
I am not sure if it's good idea to bring multi-threading into io.js. However I feel it would be beneficial to CPU-consuming computation. The JXcore is based on node.js, aiming to provide multi-thread supports.
So I am wondering if there is any official plan to have multi-thread in io.js.
The text was updated successfully, but these errors were encountered: