mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +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 {
|
impl WorkerPool {
|
||||||
/// Create new Server builder instance
|
/// Create new Server builder instance
|
||||||
pub fn new() -> Self {
|
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 {
|
WorkerPool {
|
||||||
num: std::thread::available_parallelism()
|
num,
|
||||||
.map_or(2, std::num::NonZeroUsize::get),
|
|
||||||
no_signals: false,
|
no_signals: false,
|
||||||
stop_runtime: false,
|
stop_runtime: false,
|
||||||
shutdown_timeout: DEFAULT_SHUTDOWN_TIMEOUT,
|
shutdown_timeout: DEFAULT_SHUTDOWN_TIMEOUT,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue