5 articles
Articles tagged with "Concurrency"
Explore our collection of 5 articles about concurrency.

Wait-Free SPSC Queues in Java
How to replace synchronized queue handshakes with a wait-free Single-Producer Single-Consumer ring buffer that uses precise memory ordering instead of locks.

Off-Heap Algorithms in Java: The Ring Buffer Foundation
From a naive heap-based queue to an off-heap ring buffer with dramatically better throughput, tail latency, and GC behavior for high-frequency trading workloads.

The Actor Model on the JVM: Part 3 - The Final Chapter
Complete implementation guide to the Actor Model with advanced patterns, testing strategies, and real-world lessons learned from building scalable concurrent systems.

The Actor Model on the JVM: Part 2 - The Pitfalls of Shared State
Deep dive into the specific problems that arise when dealing with shared mutable state in multithreaded environments and why traditional synchronization approaches fall short.

The Actor Model on the JVM: Part 1 - OOP and the Rise of Concurrency Challenges
Explore the evolution of Object-Oriented Programming and its challenges in concurrent programming, setting the stage for understanding the Actor Model as a solution.