DEV Community

sh1zen
sh1zen

Posted on

crossync: Blazingly Fast Concurrent Data Structures

I’ve been working on crossync for a personal need — and now I’m sharing it with you all.

It’s a fast raw implemented Atomic data structures focused on performance in high concurrent scenarios, (AtomicHashMap, AtomicVec) with internal mutability and cloning support.

It also support a non futex lock SpinCell for very high concurrent scenarios where the lock is held for a short time.

see more on:
👉 https://github.com/sh1zen/crossync

Top comments (0)