Copy-on-write

Compare

Interest

Proportion of Hacker News items mentioning "copy-on-write" over time.

Mentions

Total number of Hacker News items mentioning "copy-on-write" over time.

Copy-on-write (COW), also called implicit sharing or shadowing, is a resource-management technique used in programming to manage shared data efficiently. Instead of copying data right away when multiple programs use it, the same data is shared between programs until one tries to modify it. If no changes are made, no private copy is created, saving resources. A copy is only made when needed, ensuring each program has its own version when modifications occur. This technique is commonly applied to memory, files, and data structures. Read more on Wikipedia

© 2026 HN Trends. Built by Ben Evans. HN Trends is not affiliated with Hacker News or Y Combinator.