Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 598 Bytes

File metadata and controls

11 lines (9 loc) · 598 Bytes

Async Rust Performance Benchmarks

Benchmarking the performance of async Rust primitives and patterns.

Benchmarks

Benchmark Description Code Results
01.rs Future implementation vs. tokio::select! loop for actors src/01/ README.md
02.rs JoinSet vs. FuturesUnordered
03.rs The cost of Pin<Box<dyn Future<Output = ()>>> (async-trait etc)
04.rs When to use spawn_blocking