Rewriting the GNU Coreutils in Rust
Rewriting the GNU Coreutils in Rust
Posted Jun 9, 2021 2:30 UTC (Wed) by Paf (subscriber, #91811)In reply to: Rewriting the GNU Coreutils in Rust by wahern
Parent article: Rewriting the GNU Coreutils in Rust
Fun fact, from a file system developer:
Send file is very often *not* faster than read and write because many file system implementations use a 64KB pipe, generating 64 KB I/Os. It’s often much better to do larger I/O from user space, even on SSDs.
Send file is very often *not* faster than read and write because many file system implementations use a 64KB pipe, generating 64 KB I/Os. It’s often much better to do larger I/O from user space, even on SSDs.
