sync-data is a high-performance synchronization library
for example:
```rust
pub static RECKONBYSEC: oncecell::sync::Lazy
// one sec run sum: 2347872
fn benchinsertmulthread() { // commonuu::log4rsmod::init().unwrap(); let rw = Arc::new(SyncHashMap::new(Some(10))); rw.insert(1, 1); asserteq!(rw.len(), 1);
let rw2 = rw.clone();
let rt1 = std::thread::spawn(move || {
for i in 0..5_0000_0000_u64 {
rw2.insert(i, i + 1);
RECKON_BY_SEC.add();
}
});
let rw2 = rw.clone();
let rt2 = std::thread::spawn(move || {
for i in 5_0000_0000..10_0000_0000_u64 {
rw2.insert(i, i + 1);
RECKON_BY_SEC.add();
}
});
let rw2 = rw.clone();
let rt3 = std::thread::spawn(move || {
for i in 10_0000_0000_u64..50_0000_0000_u64 {
rw2.insert(i, i + 1);
RECKON_BY_SEC.add();
}
});
rt1.join();
} ```
wait group: ```rust use std::time::Duration; use tokio::time::sleep; use fast_able::wg::WaitGroup;
async fn testwg() { let wg = WaitGroup::new(); let wg2 = wg.clone(); tokio::spawn(async move { sleep(Duration::fromsecs(1)).await; drop(wg2); }); let wg2 = wg.clone(); tokio::spawn(async move { sleep(Duration::fromsecs(1)).await; drop(wg2); }); wg.waitasync().await; println!("all done"); } ```