1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-07-01 16:55:08 +02:00

Expose SererBuilder::worker_max_blocking_threads (#2200)

This commit is contained in:
fakeshadow
2021-05-07 01:35:04 +08:00
committed by GitHub
parent ddaf8c3e43
commit 7d1d5c8acd
2 changed files with 15 additions and 0 deletions

View File

@ -174,6 +174,16 @@ where
self
}
/// Set max number of threads for each worker's blocking task thread pool.
///
/// One thread pool is set up **per worker**; not shared across workers.
///
/// By default set to 512 / workers.
pub fn worker_max_blocking_threads(mut self, num: usize) -> Self {
self.builder = self.builder.worker_max_blocking_threads(num);
self
}
/// Set server keep-alive setting.
///
/// By default keep alive is set to a 5 seconds.