Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
40
rated 0 times [  47] [ 7]  / answers: 1 / hits: 26988  / 14 Years ago, tue, july 20, 2010, 12:00:00

Is there a way to determine the number of available CPU cores in JavaScript, so that you could adjust the number of web workers depending on that?


More From » web-worker

 Answers
95

Yes. To quote MDN:



The navigator.hardwareConcurrency read-only property returns the number of logical processors available to run threads on the user's computer…


Modern computers have multiple physical processor cores in their CPU (two or four cores is typical), but each physical core is also usually able to run more than one thread at a time using advanced scheduling techniques. So a four-core CPU may offer eight logical processor cores, for example. The number of logical processor cores can be used to measure the number of threads which can effectively be run at once without them having to context switch.


The browser may, however, choose to report a lower number of logical cores in order to represent more accurately the number of Workers that can run at once, so don't treat this as an absolute measurement of the number of cores in the user's system.



It's supported by every browser except Internet Explorer. For that, you can use the polyfill core-estimator (demo, blog post).


[#96168] Saturday, July 17, 2010, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
aidan

Total Points: 72
Total Questions: 95
Total Answers: 121

Location: Uzbekistan
Member since Sat, Feb 27, 2021
3 Years ago
aidan questions
Mon, Oct 11, 21, 00:00, 3 Years ago
Wed, Sep 29, 21, 00:00, 3 Years ago
Sun, Sep 5, 21, 00:00, 3 Years ago
Thu, Jan 16, 20, 00:00, 4 Years ago
;