Last active
December 5, 2021 14:46
-
-
Save h4n2k/b0980ffcc1ced2f74add487897aa7966 to your computer and use it in GitHub Desktop.
webstorm tune up
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
# custom WebStorm properties | |
editor.zero.latency.typing=true | |
idea.max.intellisense.filesize=3500 | |
idea.cycle.buffer.size=2048 |
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
# custom WebStorm properties | |
editor.zero.latency.typing=true | |
idea.max.intellisense.filesize=3500 | |
idea.cycle.buffer.size=2048 |
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
-Xms1024m | |
-Xmx3072m | |
-Xss64m | |
-XX:ReservedCodeCacheSize=512m | |
-XX:+UseCompressedOops | |
-XX:NewRatio=2 | |
-Dfile.encoding=UTF-8 | |
-XX:SoftRefLRUPolicyMSPerMB=250 | |
-XX:NewSize=512m | |
-XX:MaxNewSize=512m | |
-XX:+UseG1GC | |
-XX:ParallelGCThreads=4 | |
-XX:MaxTenuringThreshold=1 | |
-XX:SurvivorRatio=8 | |
-XX:+UseCodeCacheFlushing | |
-XX:+CMSClassUnloadingEnabled | |
-XX:+CMSParallelRemarkEnabled | |
-XX:CMSInitiatingOccupancyFraction=65 | |
-XX:+CMSScavengeBeforeRemark | |
-XX:+UseCMSInitiatingOccupancyOnly | |
-XX:-TraceClassUnloading | |
-XX:+AlwaysPreTouch | |
-XX:+TieredCompilation | |
-XX:+DoEscapeAnalysis | |
-XX:+UnlockExperimentalVMOptions | |
-XX:LargePageSizeInBytes=256m | |
-XX:+DisableExplicitGC | |
-XX:+ExplicitGCInvokesConcurrent | |
-XX:+PrintGCDetails | |
-XX:+PrintFlagsFinal | |
-XX:+HeapDumpOnOutOfMemoryError | |
-XX:+CMSClassUnloadingEnabled | |
-XX:+UseAdaptiveGCBoundary | |
-XX:CompileThreshold=10000 | |
-XX:+OptimizeStringConcat | |
-XX:+UnlockDiagnosticVMOptions | |
-ea | |
-Dsun.io.useCanonCaches=false | |
-Djava.net.preferIPv4Stack=true | |
-XX:-OmitStackTraceInFastThrow | |
-Xverify:none | |
-XX:ErrorFile=$USER_HOME/java_error_in_idea_%p.log | |
-XX:HeapDumpPath=$USER_HOME/java_error_in_idea.hprof | |
-Dide.no.platform.update=true |
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
-Xms1024m | |
-Xmx3072m | |
-Xss64m | |
-XX:ReservedCodeCacheSize=512m | |
-XX:+UseCompressedOops | |
-XX:NewRatio=2 | |
-Dfile.encoding=UTF-8 | |
-XX:+UseConcMarkSweepGC | |
-XX:SoftRefLRUPolicyMSPerMB=250 | |
-XX:NewSize=512m | |
-XX:MaxNewSize=512m | |
-XX:+UseParNewGC | |
-XX:ParallelGCThreads=4 | |
-XX:MaxTenuringThreshold=1 | |
-XX:SurvivorRatio=8 | |
-XX:+UseCodeCacheFlushing | |
-XX:+AggressiveOpts | |
-XX:+CMSClassUnloadingEnabled | |
-XX:+CMSIncrementalMode | |
-XX:+CMSIncrementalPacing | |
-XX:+CMSParallelRemarkEnabled | |
-XX:CMSInitiatingOccupancyFraction=65 | |
-XX:+CMSScavengeBeforeRemark | |
-XX:+UseCMSInitiatingOccupancyOnly | |
-XX:-TraceClassUnloading | |
-XX:+AlwaysPreTouch | |
-XX:+TieredCompilation | |
-XX:+DoEscapeAnalysis | |
-XX:+UnlockExperimentalVMOptions | |
-XX:LargePageSizeInBytes=256m | |
-XX:+DisableExplicitGC | |
-XX:+ExplicitGCInvokesConcurrent | |
-XX:+PrintGCDetails | |
-XX:+PrintFlagsFinal | |
-XX:+HeapDumpOnOutOfMemoryError | |
-XX:+CMSClassUnloadingEnabled | |
-XX:+UseAdaptiveGCBoundary | |
-XX:CompileThreshold=10000 | |
-XX:+OptimizeStringConcat | |
-XX:+UseStringCache | |
-XX:+UseFastAccessorMethods | |
-XX:+UnlockDiagnosticVMOptions | |
-ea | |
-Dsun.io.useCanonCaches=false | |
-Djava.net.preferIPv4Stack=true | |
-XX:-OmitStackTraceInFastThrow | |
-Xverify:none | |
-XX:ErrorFile=$USER_HOME/java_error_in_idea_%p.log | |
-XX:HeapDumpPath=$USER_HOME/java_error_in_idea.hprof | |
-Dide.no.platform.update=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://medium.com/@sergio.igwt/boosting-performance-of-intellij-idea-and-the-rest-of-jetbrains-ides-cd34952bb978