Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror

Comment Re:The idealogical language (Score 1) 100

Are there really software that can't run concurrently on different cores? I mean, unless explicitly forbidden because it uses a local ressource or some other reason. Stuff like PM2 is a crutch. It's great if you are doing web requests, not so much for heavy calculation outside the main thread.

Comment Re:The idealogical language (Score 1) 100

Well....I dunnot how to tell you this....but Node is /not/ multithreaded and not even really concurrent. It is, however, event-driven and mostly non-blocking by default ( arfff promise.....). In a certain way, the concurrency model of node is similar to the GIL of python in how it serializes the events.

Slashdot Top Deals

Never call a man a fool. Borrow from him.

Working...