---
answer: direct
beat: system-design
source: 1 article · updated: August 8, 2026
---

What's copy-on-write (CoW) at the page level?

When the parent or child writes to a shared page, the OS page-fault handler traps the write, duplicates that single page, and lets the write proceed on the copy. All other pages remain shared.

Answered in

Copy-on-Write Snapshots

fork() shares parent memory, copying only written pages for non-blocking snapshots. Write-heavy loads can spike memory to 2x under load.

Crashtech Editorial August 8, 2026 System Design

Read the full analysis

Other questions this article answers

More system design questions

Every answer on Crashtech is written by the editor of the article it comes from — never auto-summarised. Browse all answers or the System Design beat.