Lock Free vectors for fast concurrent writes
Designing a fast, lock-free vector.
You're viewing a single thread.
@Arbitrary I did this a while ago, you might find it useful. It abandons the more traditional vector concept of sequential insert, so that remove() can be implemented. https://github.com/Alonely0/Lariv
remove()
Neat work, I'll be sure to take a peek later.