How many rake tasks can be run at once in rails?

What is the best way to speed up rake's load time of the Rails environment?

  • #=>    rake environment  7.67s user 0.63s system 95% cpu 8.704 total. it's annoying that it takes a lot time when you want to run a task. eg. `rails g controller x`, `rake db:migrate`

  • Answer:

    I got mine down from 20s to 9s by putting require => false on libraries in the Gemfile that didn't need to be loaded, and by optimizing my routes (was able to reduce it by 20 routes (a little under half of what is was).

Kieran Pilkington at Quora Visit the source

Was this solution helpful to you?

Other answers

You can use the irake gem. http://stackoverflow.com/a/11335173/1151624

Kalló Bernát

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.