» Tag
data-structures
5 postsLockless MPSC FIFO queues speed up io_uring performance
Linux kernel 7.2 replaces io_uring's llist-based task queue with a lockless MPSC queue, cutting reordering overhead and boosting throughput.
Grudge: A Decaying Score Sketch for Multi-Tenant Systems
Grudge is a constant-memory Go library that decays per-key feedback scores without per-key state, enabling scalable rate limiting and abuse detection.
Static Search Trees: 40x Faster than Binary Search
Static search trees optimize searching of sorted data, enhancing throughput significantly.
CommitBrief — AI code reviews, right in your terminal
A provider-agnostic, local-first CLI that reviews your staged changes, a historic range, or a whole GitHub pull request. Zero telemetry, no server. Free and open source.
commitbrief.comDefining New JAX Types with Hijax
Utilize Hijax to define new JAX types, ensuring data integrity and specialized operations.
Building High-Performance Flat 2D Arrays in Rust (SIMD, L1 Cache)
Learn to build a high-performance 2D array structure in Rust, enhancing performance with SIMD and L1 cache.