10
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Ruby on Rails】bundle installをもう少し速くしたい時の設定

Last updated at Posted at 2023-10-09

はじめに

bundle install実行時にgemが膨大になってくると、その分実行時間が長くなるのが地味にストレスでした。調べたところ、速くする方法があったのでまとめます。

前提条件

  • bundlerがバージョン1.5以上である事
bundler -v
Bundler version 2.4.17

コマンド

bundle install --jobs=4

#or

bundle install -j4

このコマンドで並列処理で実行してくれるようになり、処理が速くなるケースが多くなります。

timeコマンドをつけると、実行時間を測ることができます。

time bundle install -j4
Bundle complete! 16 Gemfile dependencies, 75 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.

real	0m0.534s
user	0m0.373s
sys	    0m0.149s

オプションを設定で省略することもできるそうです。

bundle config --global --jobs 4
bundle install

参考

10
11
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?