Skip to content

Commit

Permalink
Merge branch 'master' into update_jvm_args
Browse files Browse the repository at this point in the history
  • Loading branch information
sclassen committed Nov 21, 2024
2 parents 10076f1 + 8034478 commit 9f27b93
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,10 @@ private static String[] getValidStartingVMArguments() {
"-XX:+CMSParallelRemarkEnabled",
"-XX:+UseZGC",
"-XX:+ZGenerational",
"-XX:HeapDumpPath"
"-XX:HeapDumpPath",
"-XX:InitialRAMPercentage", /* The initial heap size as percentage of total memory, conflicts with Xms */
"-XX:MinRAMPercentage", /* Sets the max heap size of RAM as a percentage before looking at other heuristics like MaxRAMPercentage. This is primarily useful for low memory environments (<100m) */
"-XX:MaxRAMPercentage", /* Sets the max heap size of RAM as a percentage */
};
}

Expand Down

0 comments on commit 9f27b93

Please sign in to comment.