Copy On Write (COW)
Copy on write typically refers to the method for storing changes to immutable data over time.
E.g. A base layer of data is stored. Each change is recorded as a new layer. Combining these layers represents the current state of a given File or other Filesystem entity
Examples include:
- btrfs
- Docker’s virtual filesystem