// 23 ENTRIES · INDEXED
Parsing the Unparseable: Building a SIMD-Accelerated JSON Lines Parser in Rust with AVX-512
A deep dive into building a production-grade JSON Lines parser using AVX-512 intrinsics in Rust, covering SIMD newline scanning, bit-parallel quote detection, zero-allocation tokenization, and the engineering pitfalls that separate benchmarks from production systems.
Deep Kernel Observability: Building an eBPF-Based Heap Integrity Monitor
Learn how to implement a production-safe heap memory monitor using eBPF and Rust to detect double-frees and use-after-free patterns with near-zero overhead.
Custom eBPF TCP Congestion Control for Low-Latency Trading
Learn how to implement a delay-bounded TCP congestion controller using eBPF to minimize bufferbloat in high-frequency financial data feeds.
Building a Bounded Lock-Free MPSC Channel with Hazard Pointers and Cache-Line Padding in C for High-Frequency Trading
A deep dive into why lock-free queues fail in production and how to build a hardened MPSC channel in C — with correct cache-line padding, safe memory reclamation via hazard pointers, and adaptive backpressure for sub-microsecond tail latency.
Multi-Region Kubernetes Configuration Management with CRDTs in Rust
Learn how to implement a conflict-free replicated data type (CRDT) based configuration system for Kubernetes clusters spanning multiple regions using Rust.
Building a Pluggable LSM-Tree Storage Engine in C with Compaction Strategies and Optimized Bloom Filters
This post details the design and implementation of a custom LSM-tree storage engine in C, featuring pluggable compaction strategies, mmap-based SSTable serialization, and a bloom filter implementation with performance optimizations for write-heavy telemetry workloads.