navigator.hardwareConcurrency - Web APIs 编辑
Note:
This feature is available in Web Workers.The navigator.hardwareConcurrency
read-only property returns the number of logical processors available to run threads on the user's computer.
Syntax
logicalProcessors = window.navigator.hardwareConcurrency
Value
A Number
indicating the number of logical processor cores.
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 Worker
s that can run at once, so don't treat this as an absolute measurement of the number of cores in the user's system.
Examples
In this example, one Worker
is created for each logical processor reported by the browser and a record is created which includes a reference to the new worker as well as a Boolean value indicating whether or not we're using that worker yet; these objects are, in turn, stored into an array for later use. This creates a pool of workers we can use to process requests later.
let workerList = [];
for (let i = 0; i < window.navigator.hardwareConcurrency; i++) {
let newWorker = {
worker: new Worker('cpuworker.js'),
inUse: false
};
workerList.push(newWorker);
}
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'navigator.hardwareConcurrency' in that specification. | Living Standard | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论