7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RubyMineのメモリ割り当てを増やす

Posted at

アクティビティモニタでRubyMineをみたら、結構メモリを消費していることがわかりました。私が利用していたアプリケーションの中でPhotoshopの次に多くてびっくり。

スクリーンショット 2016-03-30 23.59.37.png

そこで、メモリ割り当てを増やす設定をします。/Applications/RubyMine.app/Contents/bin/rubymine.vmoption のファイルの内容を下記のように数値を変更するだけ。PCのメモリスペックも上がってきているのでそれに合わせてカスタマイズしましょー。

rubymine.vmoption
-Xms1024m
-Xmx2048m
-XX:MaxPermSize=356m
-XX:+UseCompressedOops
7
6
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
7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?