当我执行命令bundle exec annotate
时:
Nothing annotated.
bundle exec annotate 4.33s user 54.82s system 46% cpu 2:08.45 total
Rake命令也非常慢,例如bundle exec rake db:migrate
。
bundle exec rake db:migrate 4.31s user 55.93s system 53% cpu 1:51.99 total
我找到了问题running scripts with bundle exec is slow,但是当我执行命令time bin/rake db:migrate
时,它也非常慢:
bin/rake db:migrate 3.58s user 49.47s system 45% cpu 1:55.34 total
有人能告诉我出了什么事吗?
谢谢
发布于 2014-10-14 01:34:21
在重新克隆repo并执行命令bundle install
之后,问题已经得到解决.
https://stackoverflow.com/questions/26356653
复制相似问题