Skip to main content
  1. Glossary/

Copy On Write

·46 words·1 min·
Jaume Sabater
Author
Jaume Sabater
CTO and systems engineer

Copy On Write (COW) is an optimization strategy used in computer programming and file systems to efficiently manage memory and storage. The basic idea behind COW is to delay the copying of data until it is absolutely necessary, which can help reduce overhead and improve performance.

Related