Andrei Pechkurov
Random thoughts on concurrency, databases and distributed systems

Random thoughts on concurrency, databases and distributed systems

Follow
homebadges
Tag

algorithms

#algorithms

More content

Read more stories on Hashnode


Articles with this tag

Seqlock-Based Atomic Memory Snapshots

Aug 6, 2023

Last time we discussed k-word CAS algorithm and came to the conclusion that seqlock-based atomic snapshots may be used as an alternative in situations...

Seqlock-Based Atomic Memory Snapshots

A Few Thoughts on K-Word CAS

Jul 6, 2023

A few months ago I went through Efficient Multi-word Compare and Swap paper, so here are a few thoughts on the algorithm. Long story short, I have...

A Few Thoughts on K-Word CAS

So long, sync.Map

Oct 22, 2022

While the title is certainly a clickbait, I definitely don't see any strong reason to keep dealing with sync.Map if you're a Go generics user....

So long, sync.Map

Fast and Simple SPSC Queue

Oct 1, 2022

Single producer single consumer (SPSC) queues form the simplest type of concurrent queues. We have a single thread producing the items, as well as a...

Fast and Simple SPSC Queue