Last active
April 21, 2017 18:23
-
-
Save michaelahlers/259ba6040dc1bfd8b782ffad3cef37f6 to your computer and use it in GitHub Desktop.
Helpful IntelliJ IDEA settings for coping with egregiously-large SBT projects.
This file contains 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
# See https://intellij-support.jetbrains.com/hc/en-us/articles/206544859-Mac-OS-specific-configuration-of-the-JVM-options for detials. | |
-server | |
-Xms2g | |
-Xmx2g | |
-XX:NewRatio=3 | |
-Xss16m | |
-XX:+UseConcMarkSweepGC | |
-XX:+CMSParallelRemarkEnabled | |
-XX:ConcGCThreads=4 | |
-XX:ReservedCodeCacheSize=240m | |
-XX:+AlwaysPreTouch | |
-XX:+TieredCompilation | |
-XX:+UseCompressedOops | |
#-XX:SoftRefLRUPolicyMSPerMB=50 | |
#-Dsun.io.useCanonCaches=false | |
#-Djava.net.preferIPv4Stack=true | |
#-Djsse.enableSNIExtension=false | |
#-ea | |
#-Xms128m | |
#-Xmx750m | |
#-XX:ReservedCodeCacheSize=240m | |
#-XX:+UseCompressedOops |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment