LoginSignup
5
4

More than 5 years have passed since last update.

RubyMine8 のメモリの割り当てを変更する

Last updated at Posted at 2016-01-08

OS は EL Capitan で RubyMine のバージョンは 8.0.3 です.

RubyMine を本格的に使っていると動作がカクカクしてきたので, RubyMine の起動前にするべきこと にあるメモリの割り当てを変更してみました.

上のリンクからは微妙にパスやファイル名が変わっていたので, メモとして残しておきます.

パスとファイル名

/Applications/RubyMine.app/Contents/bin/rubymine.vmoptions

中身

rubymine.vmoptions
-Xms128m
-Xmx512m
-XX:MaxPermSize=250m
-XX:+UseCompressedOops

以下の場所にコピーする

$ cp rubymine.vmoptions ~/Library/Preferences/RubyMine80/rubymine.vmoptions

良しなに書き換える

$ vim ~/Library/Preferences/RubyMine80/rubymine.vmoptions
rubymine.vmoptions
-Xms1024m
-Xmx2048m
-XX:MaxPermSize=250m
-XX:+UseCompressedOops

公式ページ Tuning RubyMine にも書いてあるので, 参考までに.

その他関連
RubyMine にメモリをたくさん割り当てる
RubyMine の起動前にするべきこと

5
4
0

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
5
4