sync-data

sync-data is a high-performance synchronization library

for example: ```rust pub static RECKONBYSEC: oncecell::sync::Lazy = oncecell::sync::Lazy::new(|| Statis::new(|v| println!("one sec run sum: {v}")));

// one sec run sum: 2347872

[test]

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;

[tokio::test]

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"); } ```