I am using Ruby on Rails under windows, installed with railsinstaller. Everything works fine, except that any command such as rails console
or bundle exec rake db:migrate
takes on average 8 seconds before executing. (rails s
and rails -v
are exceptions and take about 1 to 2 sec to launch, which is still abnormally high). I am not talking about the time of the entire command, just the time between when I hit enter and when I see the first output.
During this time, one core of my processor is working at 100%, and there is no load on the hard drive. I really feel like that I am waiting for some kind of timeout to expire, because I don't see why rails console
should take that much processing power (I have a Core 2 Duo processor).
Do you have experienced this kind of problem ? What can it be ? How can I investigate this ?