copy-on-write
Table of Contents
1. Abstract
- create a copy of the resource only when you need to write it back on the file system
- checkout BTRFS
- happens on the block level and not the file level
- some contexts of use:
- forking a process (fork())
- consistent disk snapshots
- efficient vm provisioning
- containers