这与Intellij从9到11有关。在右下角的IDEA窗口中,我看到了当前的内存使用情况,通常是"224M of 254M“。我如何为Idea提供更多内存,使其读起来类似于"224M of 512M”?
谢谢。
发布于 2010-03-13 05:16:27
在Mac上,$IDEA_HOME/Contents/Info.plist
~: grep --context=5 Xmx /Applications/Maia-IU-94.426.app/Contents/Info.plist
<string>true</string>
<key>apple.awt.fullscreencapturealldisplays</key>
<string>false</string>
</dict>
<key>VMOptions</key>
<string>-Xms128m -Xmx912m -Dfile.encoding=UTF-8 -XX:MaxPermSize=250m -ea -agentlib:yjpagent=disablej2ee,disablecounts,disablealloc,sessionname=IntelliJIdea90 -Xbootclasspath/a:../lib/boot.jar</string>
<key>WorkingDirectory</key>
<string>$APP_PACKAGE/bin</string>
</dict>
</dict>
</plist>在Windows/Linux上,%IDEA_HOME%\bin\idea.vmoptions
发布于 2010-03-13 04:18:31
编辑以下文件:
idea/bin/idea.vmoptions发布于 2010-03-13 04:19:45
对于Windows,在您的IntelliJ Idea文件夹中修改idea.exe.vmoptions。
请参阅http://blogs.jetbrains.com/idea/2006/04/configuring-intellij-idea-vm-options/
https://stackoverflow.com/questions/2435569
复制相似问题