Definition
A computer trick where two programs share the same data until one tries to change it, and only then a real copy gets made.
A memory and storage optimization in which duplicated state is held by reference and physical copying is deferred until a write occurs; underlies Unix fork, OverlayFS, and reflink-based snapshots.
Also called: CoW