-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework compression for faster build #615
base: main
Are you sure you want to change the base?
Conversation
Build time decreased from last deployed |
d9efe7a
to
2890646
Compare
@davepagurek If you have the time, do have a try to build from this PR and see if there are any problems. The overall build time should be about half as before now. No worries if you are busy with other stuff though as this is not urgent. |
astro-compress
leaves too much possible performance on the table by not processing images concurrently. This version tries to do this as much as possible, one possible bottle neck is IO. Possible way to optimize this is through utilizing streams but will require temporary write location.Better build console output would be needed as well.