Hacker News new | ask | show | jobs
by IsTom 477 days ago
Copy-on-write means that it performs copy only when you make the first change (and only copies part that changes, rest is used from the original file), until then copying is free.
1 comments

Is it file level or block level copy? The latter, I hope.

Update: whoops, missed it in your comment. Block (changed bytes) level.