Tag: #lock-free
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 3 posts
Lock-Free Concurrency Programming Complete Guide 2025: Atomics, Memory Model, CAS, Lock-Free Data Structures
Everything about Lock-Free programming: atomics fundamentals, CPU memory models (x86 vs ARM), CAS (Compare-And-Swap), Lock-Free data structures (Queue/Stack/Hash), ABA problem, Hazard Pointers, RCU, Java/Rust/C++ compari
2026-04-15 · 11 min read #lock-free#concurrency#atomics#memory-model#casConcurrency & Parallel Programming Complete Guide 2025: Async/Await, Thread, Goroutine, Actor Model
Everything about concurrency and parallel programming! Thread vs Coroutine vs Goroutine, Async/Await patterns, Event Loop (Node.js/Python), Actor model (Erlang/Akka), Lock-free data structures, deadlock/race condition pr
2026-04-14 · 27 min read #concurrency#parallelism#async-await#thread#goroutineConcurrency & Parallelism Deep Dive: Multithreading, Async, and Event Loops Explained
From the fundamental difference between concurrency and parallelism! Threads vs coroutines vs virtual threads, event loop (Node.js), Actor model (Erlang/Akka), lock-free data structures, language-by-language concurrency
2026-03-23 · 21 min read #concurrency#parallelism#multithreading#async#event-loop