Merge pull request #205 from Keruspe/mt-executor

allow spawning more global executor threads
This commit is contained in:
Stjepan Glavina 2020-08-27 15:25:46 +02:00 committed by GitHub
commit c041d946eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 9 deletions

View File

@ -79,9 +79,11 @@ pub mod prelude {
/// Spawns a task onto the single-threaded global executor.
///
/// There is a single-threaded global executor that gets lazily initialized on first use. It is
/// advisable to use it in tests or small programs, but it is otherwise a better idea to define
/// There is a (single-threaded by default) global executor that gets lazily initialized on first use.
/// It is advisable to use it in tests or small programs, but it is otherwise a better idea to define
/// your own [`Executor`]s.
/// You can configure the number of threads of the global executor using the `SMOL_THREADS` environment
/// variable.
///
/// # Examples
///
@ -96,15 +98,22 @@ pub mod prelude {
/// ```
pub fn spawn<T: Send + 'static>(future: impl Future<Output = T> + Send + 'static) -> Task<T> {
static GLOBAL: Lazy<Executor> = Lazy::new(|| {
thread::Builder::new()
.name("smol".to_string())
.spawn(|| {
loop {
let num_threads = {
// Parse SMOL_THREADS or run a monothreaded executor.
std::env::var("SMOL_THREADS")
.ok()
.and_then(|s| s.parse().ok())
.unwrap_or(1)
};
for n in 1..=num_threads {
thread::Builder::new()
.name(format!("smol-{}", n))
.spawn(|| loop {
let _ =
catch_unwind(|| async_io::block_on(GLOBAL.run(future::pending::<()>())));
}
})
.unwrap();
})
.expect("cannot spawn executor thread");
}
Executor::new()
});
GLOBAL.spawn(future)