Illustration of memory pages being shared and duplicated on write.

How Copy on Write Semantics Optimize Memory Management

Copy‑on‑write lets programs share data until it changes, cutting memory use and speeding up operations.

May 15, 2026 · 8 min · 1530 words · martinuke0
Diagram of a B-Tree node being duplicated on write.

Why Copy on Write B-Trees Improve Database Concurrency

Copy‑on‑write B‑trees enable high‑concurrency database operations by allowing readers to see a stable snapshot while writers modify a new version of the tree. The article explains the underlying mechanics, performance benefits, and practical implementation tips.

May 15, 2026 · 8 min · 1524 words · martinuke0
Diagram of a memory page being duplicated lazily.

How Copy on Write Semantics Impact Linux Kernel Memory Management

A deep dive into Linux’s copy‑on‑write semantics, explaining its inner workings, benefits, and the trade‑offs developers must consider.

May 15, 2026 · 8 min · 1686 words · martinuke0
Short description of the cover image subject.

Why Copy on Write Optimizes Memory in Modern Kernels

Copy‑on‑write (CoW) lets the kernel share pages between processes until a write occurs, cutting memory use and speeding up forks.

May 15, 2026 · 8 min · 1603 words · martinuke0
Illustration of a B‑tree node being duplicated on write.

How Copy-on-Write B-Trees Enable Instant Database Snapshots

A deep dive into the mechanics of copy‑on‑write B‑trees and why they power instant snapshot features in today’s high‑performance databases.

May 14, 2026 · 6 min · 1248 words · martinuke0
Feedback