The fast async mutex which uses atomics with spinlock algorithm.
Spinlock algorithm integrated with the Rust futures concept without the overhead of any libs. Also when the MutexGuard
is dropped,
a waker of the next locker will be executed.
It will be works with any async runtime in Rust
, it may be a tokio
, smol
, async-std
and etc..
```rust use fastasyncmutex::mutex::Mutex;
async fn main() { let mutex = Mutex::new(10); let guard = mutex.lock().await; assert_eq!(*guard, 10); } ```
There is result of benchmarks which runs on MacBook Pro (16-inch, 2019) 2,3 GHz 8-Core Intel Core i9 16GB RAM
Tests you can find in the benchmarks dir.
```
running 15 tests
test fastasyncmutex::tests::concurrencywithoutwaiting ... bench: 1,586,483 ns/iter (+/- 118,637)
test fastasyncmutex::tests::create ... bench: 0 ns/iter (+/- 0)
test fastasyncmutex::tests::stepbystepwithoutwaiting ... bench: 168,055 ns/iter (+/- 33,155)
test fastasyncmutexunordered::tests::concurrencywithoutwaiting ... bench: 1,525,709 ns/iter (+/- 116,901)
test fastasyncmutexunordered::tests::create ... bench: 0 ns/iter (+/- 0)
test fastasyncmutexunordered::tests::stepbystepwithoutwaiting ... bench: 84,197 ns/iter (+/- 22,894)
test futures::tests::concurrencywithoutwaiting ... bench: 1,659,640 ns/iter (+/- 127,051)
test futures::tests::create ... bench: 91 ns/iter (+/- 9)
test futures::tests::stepbystepwithoutwaiting ... bench: 206,003 ns/iter (+/- 28,685)
test smol::tests::concurrencywithoutwaiting ... bench: 1,861,629 ns/iter (+/- 160,359)
test smol::tests::create ... bench: 0 ns/iter (+/- 0)
test smol::tests::stepbystepwithoutwaiting ... bench: 367,434 ns/iter (+/- 69,082)
test tokio::tests::concurrencywithoutwaiting ... bench: 22,798,759 ns/iter (+/- 2,861,692)
test tokio::tests::create ... bench: 87 ns/iter (+/- 27)
test tokio::tests::stepbystepwithout_waiting ... bench: 733,205 ns/iter (+/- 126,314)
test result: ok. 0 passed; 0 failed; 0 ignored; 15 measured; 0 filtered out ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.