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
Diagram showing shared memory pages before and after a write.

Why Copy on Write Improves Memory Management Efficiency

Explore the mechanics of copy‑on‑write, its benefits for memory efficiency, and practical examples in Linux, databases, and programming languages.

May 14, 2026 · 8 min · 1642 words · martinuke0
Illustration of memory pages being duplicated on write.

How Copy-on-Write Semantics Impact Garbage Collection Latency

Copy‑on‑write can reduce memory copying but may increase GC pause times. This post explains why and how to mitigate the latency impact.

May 14, 2026 · 8 min · 1610 words · martinuke0
Illustration comparing B‑Tree nodes and LSM Tree levels.

Memory Management Tradeoffs: B‑Trees vs. LSM Trees

A deep dive into the memory management trade‑offs between B‑Trees and LSM Trees, with practical guidance for database developers.

May 14, 2026 · 8 min · 1492 words · martinuke0
Diagram of memory pages being shared and duplicated on write.

Why Copy on Write Improves Memory Efficiency in Linux

Copy‑on‑Write (CoW) lets Linux share pages until they’re modified, dramatically cutting memory footprints for forks, containers, and snapshots.

May 14, 2026 · 9 min · 1836 words · martinuke0
Feedback