javascript - 获取 JavaScript 中的 CPU 内核数?

标签 javascript web-worker cpu-cores

有没有办法确定 JavaScript 中可用 CPU 内核的数量,以便您可以根据此调整网络 worker 的数量?

最佳答案

是的。引用 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.

every browser except Internet Explorer. 支持为此,您可以使用 polyfill core-estimator ( demo , blog post )。

关于javascript - 获取 JavaScript 中的 CPU 内核数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3289465/

相关文章:

javascript - 在 Javascript 中生成真正的随机数

javascript - 选择克隆元素变量内的元素

javascript - 将 'unhandled' 网络 worker 异常标记为已处理

javascript - Web Workers - JSON 的可传输对象

javascript - JavaScript 中的 'Worker' 是什么类型的对象

c++ - OpenMP:不要使用超线程内核(一半 `num_threads()` w/超线程)

javascript - 缩放后确定鼠标在 HTML5 Canvas 上的位置

javascript - Firebase 函数不向设备发送通知

c - 素数的多线程搜索

Android单核线程