I built a faster alternative to cp and rsync — here's how it works
Scored daily by a customisable AI persona to surface the most relevant engineering leadership news.
Building a faster file copy tool is a practical systems programming project for developer productivity.
fast-copy is a Python CLI that accelerates file copies by sorting files via OS-specific APIs (FIEMAP/fcntl/FSCTL) for sequential disk I/O, deduplicating with xxHash-128 and a SQLite cache, and streaming ~100 MB tar batches over SSH to avoid SFTP overhead, reporting 3x speedups in benchmarks.
Benchmark fast-copy against rsync or scp for high-volume transfers to quantify I/O improvements and deduplication savings in your environment.
Optimizing file transfer I/O directly reduces bottlenecks in backup and deployment workflows, which is critical for maintaining productivity in cloud or hybrid infrastructure setups common in senior engineering roles.