os.setPriority()方法是os模塊的內置應用程序編程接口,用於設置由以下命令指定的進程的調度優先級pid
和priority
。
用法:
os.setPriority(pid, priority)
參數:此方法具有上述和以下所述的兩個參數:
- pid:它是一個可選參數。它指定要設置其調度優先級的進程ID。其默認值為0。
- priority:它是必需的參數。它指定要為進程指定的進程ID設置的優先級。此參數的值必須介於-20(最高)到19(最低)之間。
返回值:此方法不返回任何內容。
注意:由於Windows係統中的優先級不同於UNIX係統,因此Windows係統中的優先級被映射到os.constants.priority中的六個優先級常量之一。因此,在檢索值時可能與實際值略有不同。在Windows係統中,要設置最高優先級,我們需要提升的用戶權限。因此有時PRIORITY_HIGHEST可能會更改為PRIORITY_HIGH,而不會發出任何警告。
以下示例說明了Node.js中os.setPriority()方法的使用:
範例1:
// Node.js program to demonstrate the
// os.setPriority() Method
// Allocating os module
const os = require('os');
// Setting priority for the current process
console.log("setting priority for"
+ " the current process to 17");
try{
// Setting priority of current process
os.setPriority(17);
}catch(err){
// Printing error message if any
console.log(":error occured"+err);
}
輸出:
setting priority for the current process to 17
範例2:
// Node.js program to demonstrate the
// os.setPriority() Method
// Allocating os module
const os = require('os');
// Setting priority for the current process
os.setPriority(17);
try{
// Printing priority of current process
console.log(os.getPriority());
}catch(err){
// Printing error message
console.log(":error occured"+err);
}
輸出:
10
注意:上麵的程序將通過使用 node filename.js
命令。
參考: https://nodejs.org/api/os.html#os_os_setpriority_pid_priority
相關用法
注:本文由純淨天空篩選整理自gekcho大神的英文原創作品 Node.js | os.setPriority() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。