concurrency

Tag

Cards List
#concurrency

SQL: Incorrect by Construction

Hacker News Top · yesterday Cached

The article analyzes inherent concurrency bugs in SQL, such as atomicity failures, TOCTOU issues, and deadlocks, using a money transfer example to demonstrate correct locking and transaction practices.

0 favorites 0 likes
#concurrency

Multi-Stream LLMs: Unblocking Language Models with Parallel Streams of Thoughts, Inputs and Outputs

Hugging Face Daily Papers · yesterday Cached

This paper proposes Multi-Stream LLMs, which transition from sequential message-based instruction tuning to parallel stream processing. This approach allows language models to simultaneously read, think, and generate across multiple concurrent data flows, addressing bottlenecks in autonomous agent applications.

0 favorites 0 likes
#concurrency

Counting Fast in Erlang with:counters and:atomics

Hacker News Top · 4d ago Cached

This technical article explains how to use Erlang's :counters and :atomics modules for high-performance counting and shared mutable state outside the standard process isolation model. It covers atomic operations like add_get, exchange, and compare-and-swap within the BEAM runtime.

0 favorites 0 likes
#concurrency

The `Sync` bound nobody asked for

Lobsters Hottest · 5d ago Cached

Explains how `&self` on an async trait method with a `Send` future implicitly requires `Sync` on the implementing type, and offers fixes like switching to `&mut self` or using `Sync` interior mutability.

0 favorites 0 likes
#concurrency

Potential Consequences of Using Postgres as a Job Queue

Lobsters Hottest · 6d ago Cached

The article analyzes the scalability limitations of using PostgreSQL as a job queue, specifically highlighting performance bottlenecks caused by MultiXact SLRU contention under high concurrency. It explains why this architecture fails in production despite working well in development and suggests considering alternatives.

0 favorites 0 likes
#concurrency

What Async Promised and What It Delivered

Hacker News Top · 2026-04-22 Cached

A deep dive into the evolution of async programming models—from callbacks to promises—highlighting how each wave solved prior resource and performance issues while introducing new ergonomic challenges.

0 favorites 0 likes
#concurrency

@system_monarch: I have 12 years of experience and working as a Principal Engineer @Atlassian and I have seen concurrency scaring the he…

X AI KOLs Timeline · 2026-04-21 Cached

An Atlassian Principal Engineer highlights how concurrency concepts intimidate junior engineers and dominate backend interview fears.

0 favorites 0 likes
← Back to home

Submit Feedback