Comment on Io.js community thoughts on reconciliationComments−amelius11yI wonder why they (both node.js and io.js) chose to use processes instead of threads to do multiprocessing, because with threads you can have at least structural sharing of immutable data structures.−phpnode11yThere is an open pull request that adds "workers" to io.js, uses threads - https://github.com/iojs/io.js/pull/1159−amelius11yOk, good to know, thanks.
Comments
I wonder why they (both node.js and io.js) chose to use processes instead of threads to do multiprocessing, because with threads you can have at least structural sharing of immutable data structures.
There is an open pull request that adds "workers" to io.js, uses threads - https://github.com/iojs/io.js/pull/1159
Ok, good to know, thanks.