Skip to content

Instantly share code, notes, and snippets.

@vrkansagara
Created March 23, 2022 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vrkansagara/958871ecdd8bba49982c0e00b0c38da2 to your computer and use it in GitHub Desktop.
Save vrkansagara/958871ecdd8bba49982c0e00b0c38da2 to your computer and use it in GitHub Desktop.
phpstrom performance tune up parameters
-server
-Xms2048m
-Xmx2048m
-XX:NewSize=512m
-XX:MaxNewSize=512m
-XX:PermSize=512m
-XX:MaxPermSize=512m
-XX:+UseParNewGC
-XX:ParallelGCThreads=4
-XX:PretenureSizeThreshold=64m
-XX:MaxTenuringThreshold=8
-XX:NewRatio=3
-XX:SurvivorRatio=8
-XX:TargetSurvivorRatio=90
-XX:+UseCodeCacheFlushing
-XX:+UseConcMarkSweepGC
-XX:+AggressiveOpts
-XX:+CMSClassUnloadingEnabled
-XX:+CMSIncrementalMode
-XX:+CMSIncrementalPacing
-XX:+CMSParallelRemarkEnabled
-XX:CMSInitiatingOccupancyFraction=65
-XX:+CMSScavengeBeforeRemark
-XX:+UseCMSInitiatingOccupancyOnly
-XX:ReservedCodeCacheSize=256m
-XX:-TraceClassUnloading
-ea
-Dsun.io.useCanonCaches=false
-verbose:gc
-Xss1M
-Xgcpolicy:gencon
-Xjit:codetotal=131072
-Dsun.net.inetaddr.ttl=160
-XX:+HeapDumpOnOutOfMemoryError
-XX:HeapDumpPath=/tmp/phpstrom`date`.hprof
-Duser.timezone="Asia/Kolkata"
-XX:-OmitStackTraceInFastThrow
-XX:CMSMaxAbortablePrecleanTime=6000
-XX:GCLogFileSize=20M
-XX:NumberOfGCLogFiles=9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment