» Tag
concurrency
31 postsThe four hidden causes behind an AI agent's vanishing memory writes
Four distinct causes make AI agent memory writes vanish silently: key mismatches, compaction drops, lost-update races, and stale-read writes.
Lucen parallelizes Python loops via two comments, bit-identical results
Lucen parallelizes Python for loops via two comments, guaranteeing bit-identical results versus sequential execution. Rust-accelerated, v1.1, Apache-2.0.
Virtual Thread Pinning in Java Loom: Why Throughput Stalls
Virtual thread pinning locks carrier threads via synchronized or native calls, turning Loom apps into bounded thread pools; JDK 24's JEP 491 fixes most cases.
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.comRunloom Brings Go-Style Stackful Coroutines to Python
Runloom is a Go-style coroutine library for free-threaded Python 3.14t, spawning millions of fibers per core. It beats Go on spawn speed but trails on memory use.
Lockless 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.
Per-Row Reservation Pattern for Billing Bulk API Batches
A bulk GSTIN verification endpoint reveals why single balance-check billing fails when some rows are free, and how per-row atomic reservation fixes overselling and race conditions.
Inside Go Channels: hchan Struct, the GMP Scheduler, and the Send Path
A source-level look at Go's hchan struct, GMP scheduler, and channel send mechanics, with deadlock debugging, select patterns, and worker pool examples.
LLM Agent Performance Is a Distributed Systems Problem
FixBugs's team shows how token math, parallel chunking, and queues cut LLM agent latency: file analysis dropped from 10 minutes to 40 seconds.
CVE-2026-64560: Use-After-Free in Linux posix-cpu-timers
CVE-2026-64560 details a Linux kernel posix-cpu-timers use-after-free caused by an exec() race condition, along with its memory-ordering fix.
Heimdall MCP 1.5.0 Adds Resource Locks to Stop Silent Overwrites
Heimdall MCP 1.5.0 adds resource locks across MCP tools and native editor actions, closing a race condition where concurrent agents overwrite each other silently.