Last active
May 12, 2019 23:22
-
-
Save mkdika/19c970ed326a20f2b1a50cb7e9f958de to your computer and use it in GitHub Desktop.
My IntelliJ 64bit Custom VM 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
# custom IntelliJ IDEA VM options | |
# only apply for IntelliJ use JDK8, not JDK11 | |
-server | |
-Xms2048m | |
-Xmx2048m | |
-XX:NewSize=512m | |
-XX:MaxNewSize=512m | |
-XX:ParallelGCThreads=4 | |
-XX:MaxTenuringThreshold=1 | |
-XX:SurvivorRatio=8 | |
-XX:+UseCodeCacheFlushing | |
-XX:+UseConcMarkSweepGC | |
-XX:+AggressiveOpts | |
-XX:+CMSClassUnloadingEnabled | |
-XX:+CMSIncrementalMode | |
-XX:+CMSIncrementalPacing | |
-XX:+CMSParallelRemarkEnabled | |
-XX:CMSInitiatingOccupancyFraction=65 | |
-XX:+CMSScavengeBeforeRemark | |
-XX:+UseCMSInitiatingOccupancyOnly | |
-XX:ReservedCodeCacheSize=240m | |
-XX:-TraceClassUnloading | |
-ea | |
-Dsun.io.useCanonCaches=false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use this at IntelliJ IDEA 2018 Ultime and run smoothly.