Skip to content

Instantly share code, notes, and snippets.

@acip
Created January 3, 2022 18:23
Show Gist options
  • Save acip/73b2547905da8d36c8f454492530f717 to your computer and use it in GitHub Desktop.
Save acip/73b2547905da8d36c8f454492530f717 to your computer and use it in GitHub Desktop.
Copy Composer vendor folder methods speed comparison
# 189M vendor
# 3.7s
time tar cf - ./vendor --warning=no-file-changed | (cd /tmp/; tar xf -)
# 4.7s
rsync -aW --no-compress vendor/ /tmp/
# 5s
cp -a ./vendor /tmp/
# different drives - on the same drive cp is slightly faster
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment