Linux — Zero Copy

What is zero copy and how does it work?

Tony
Dev Genius
Published in
6 min readAug 22, 2022

--

Many Web applications serve a significant amount of static content, which amounts to reading data off of a disk and writing the exact same data back to the response socket. Each time data traverses the user-kernel boundary, it must be copied, which consumes CPU cycles and memory bandwidth.

--

--