Last active
May 13, 2023 04:42
-
-
Save sj26/4728657 to your computer and use it in GitHub Desktop.
Don't discard cache during asset precompile. Full explanation and caveats: http://sj26.com/2013/02/09/the-asset-pipeline-isnt-actually-slow
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stick this in lib/tasks/assets.rake or similar | |
# | |
# A bug was introduced in rails in 7f1a666d causing the whole application cache | |
# to be cleared everytime a precompile is run, but it is not neccesary and just | |
# slows down precompiling. | |
# | |
# Secondary consequences are the clearing of the whole cache, which if using | |
# the default file cache could cause an application level performance hit. | |
# | |
# This is already fixed in sprockets-rails for rails 4, but we patch here for | |
# interim gains. | |
# | |
# If you're using rails pre-3.2 change "primary" to "digest" below. | |
Rake::Task["assets:precompile:primary"].prerequisites.delete "tmp:cache:clear" | |
Rake::Task["assets:precompile:nondigest"].prerequisites.delete "tmp:cache:clear" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for sharing!