mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Use core-affinity for core count detection
This commit is contained in:
parent
ba57330058
commit
bbbb7a393e
1 changed files with 7 additions and 2 deletions
|
@ -23,9 +23,14 @@ impl Default for WorkerPool {
|
|||
impl WorkerPool {
|
||||
/// Create new Server builder instance
|
||||
pub fn new() -> Self {
|
||||
let num = core_affinity::get_core_ids()
|
||||
.map(|v| v.len())
|
||||
.unwrap_or_else(|| {
|
||||
std::thread::available_parallelism().map_or(2, std::num::NonZeroUsize::get)
|
||||
});
|
||||
|
||||
WorkerPool {
|
||||
num: std::thread::available_parallelism()
|
||||
.map_or(2, std::num::NonZeroUsize::get),
|
||||
num,
|
||||
no_signals: false,
|
||||
stop_runtime: false,
|
||||
shutdown_timeout: DEFAULT_SHUTDOWN_TIMEOUT,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue