After I added Sprockets, Rails is loading very slow in development mode, what should I do to speed it up?

link|improve this question

Could you provide: the part of the Gemfile you changed, is it Rails 3.1 or a modified Rails 3.0.x application, what is your configuration in development mode for assets? – mliebelt Sep 23 '11 at 7:36
feedback

2 Answers

up vote 28 down vote accepted

Take a look at https://github.com/wavii/rails-dev-tweaks.

Rails is running all of the to_prepare hooks on every Sprockets asset request in development mode. This includes things like auto-(re)loading your code, and various gems sneak work in there too.

rails-dev-tweaks disables to_prepare & reloading on any asset request (and a few others - read the first part of its README). Speeds up your dev environment by a huge amount for any decently sized project. It's also configurable to do this for any additional requests you like

link|improve this answer
Nice gem, it made asset serving useful. Rails was taking forever to load a single page that had too many assets. – Ian Oct 1 '11 at 17:39
1  
Rails development is now awesome again! :) – Frexuz Nov 12 '11 at 11:48
YEEEES! ^ ^ THAT. WORKS. BEAUTIFULLY! – Houen Dec 22 '11 at 12:50
Be very careful. Hours and Hours of dev time has been lost because of this gem. – JZ. May 9 at 6:21
What issues did you run into? If you have some time, cut a github issue to the project; I'd be interested in seeing how your workflow differs & is impacted by it. – Nevir May 9 at 14:31
feedback

Have you looked at how quickly it runs in production? The development environment behaves differently than testing and production, and takes more performance hits because of it. Without more information, we can't provide you with a better answer.

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.