Performance
3 articles
Articles tagged with "Performance"
Explore our collection of 3 articles about performance.

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.
JavaOff-Heap+5
Arthur Costa•18 min read

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.
JavaOff-Heap+5
Arthur Costa•20 min read

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.
JavaConcurrency+4
Arthur Costa•20 min read