The command "rake assets:precompile" works very slow for me. Especially on my Amazon EC2 Micro production server which does not have a lot of processor resources. On EC2 I have to wait 1 minute or more during each deployment just for this precompile task alone. Is there a way to make it faster?

Previously I used Jammit to compress/minify css and js. Jammit worked nearly 10 times faster on the same web site and servers.

link|improve this question

2  
you could precompile your assets before deploying – Marian Theisen Sep 24 '11 at 6:44
Right, I thought about that. But I do not know how I will deploy the precompiled assets to production easily. I am using capistrano and each time it will commit the precompiled assets to git. My concern is that git repository will grow fast in this case, keeping the history of all previous assets. And that is not just css/js - but all the asset images as well. – Evgeny Sep 25 '11 at 12:34
1  
It's extremely slow for me too (135,987ms = ~2 minutes). I'll have to look into precompiling before deploying... I'm concerned about adding them to git as well, mostly because that would add a lot of noise to the git logs. I would recommend not adding them to git -- just rsync that directory from localhost to your webserver as part of your cap deploy script. – Tyler Rick Nov 18 '11 at 20:18
If you don't need to load the Rails environment, you should disable it with: config.assets.initialize_on_precompile = false – nathan.f77 Jan 16 at 6:52
feedback

2 Answers

up vote 7 down vote accepted

There is a bug in Rails 3.1.0 that includes too many files in the precompile process. This could be the reason for the slowness if you have many assets js and css assets.

The other is that Sprockets (the gem doing the compilation) is more complex and has to allow for more options - scss, coffeescript and erb. Because of this I suspect it will be slower doing just concatenation and minification.

As suggested, you could precompile the files before deploying them if this is still an issue.

link|improve this answer
Thank you for the explanation. I also think it is slow because it needs to load the rails environment on production, which was not the case for Jammit. In any case, I am not going to return to Jammit. I like the asset pipeline a lot. – Evgeny Sep 25 '11 at 12:38
feedback

If you don't need to load the Rails environment, you should disable that with:

config.assets.initialize_on_precompile = false
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.