Created
November 9, 2015 09:11
-
-
Save melinite/af12d751b60737f5474a to your computer and use it in GitHub Desktop.
fast jdk 8 webstorm 10+ jvm options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On mac in terminal: | |
cp /Application/WebStorm.app/bin/webstorm.vmoptions ~/Library/Preferences/WebStorm{version}/ | |
edit webstorm.vmoptions in your Library Preferences folder (WebStorm11) | |
-server | |
-Xms2048m | |
-Xmx2048m | |
-XX:MaxPermSize=1024m | |
-XX:ReservedCodeCacheSize=512m | |
-XX:+UseCodeCacheFlushing | |
-XX:+UseCompressedOops | |
-XX:+UseConcMarkSweepGC | |
-XX:+AggressiveOpts | |
-XX:+CMSClassUnloadingEnabled | |
-XX:+CMSIncrementalMode | |
-XX:+CMSIncrementalPacing | |
-XX:CMSIncrementalDutyCycleMin=0 | |
-XX:-TraceClassUnloading | |
-XX:+TieredCompilation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment