Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

# Set the NewSize and MaxNewSize (space for eden and survior) to half of the max heap. uPortal creates a lot of temporary objects, the large NewSize provides enough space for the objects to be created, used and die between GCs on the eden heap. This results in less of a need for objects in eden to be copied to survior. DO NOT set this to more than half of the max heap or the GC can't fulfill the Young Generation Guarantee which will cause constant full GCs
-XX:NewSize=640m
-XX:MaxNewSize=640m

# Set the survivor heap ratio. To determine the size of your eden and survior spaces use the following forumula "SurviorSize = MaxNewSize / (SurvivorRatio + 2)" and "EdenSize = SurviorSize * SurvivorRatio". Remember that there are two Survivor spaces and one Eden space.
-XX:SurvivorRatio=5

-XX:TargetSurvivorRatio=90
-XX:MaxTenuringThreshold=12
-XX:+UseConcMarkSweepGC
-XX:+CMSIncrementalMode
-XX:+CMSIncrementalPacing
-XX:+CMSParallelRemarkEnabled
-XX:+UseParNewGC
-XX:PermSize=64m
-XX:MaxPermSize=64m
-XX:+UseTLAB

...