Skip to content

Instantly share code, notes, and snippets.

@plexus
Created January 12, 2022 19:45
Show Gist options
  • Save plexus/22800a44c4b58cb975fc354cb6dd1c80 to your computer and use it in GitHub Desktop.
Save plexus/22800a44c4b58cb975fc354cb6dd1c80 to your computer and use it in GitHub Desktop.
#!/bin/sh
exec java-17 \
-Xms8G \
-Xmx8G \
-XX:+UseG1GC \
-XX:+ParallelRefProcEnabled \
-XX:MaxGCPauseMillis=200 \
-XX:+UnlockExperimentalVMOptions \
-XX:+DisableExplicitGC \
-XX:+AlwaysPreTouch \
-XX:G1HeapWastePercent=5 \
-XX:G1MixedGCCountTarget=4 \
-XX:G1MixedGCLiveThresholdPercent=90 \
-XX:G1RSetUpdatingPauseTimePercent=5 \
-XX:SurvivorRatio=32 \
-XX:+PerfDisableSharedMem \
-XX:MaxTenuringThreshold=1 \
-XX:G1NewSizePercent=30 \
-XX:G1MaxNewSizePercent=40 \
-XX:G1HeapRegionSize=8M \
-XX:G1ReservePercent=20 \
-XX:InitiatingHeapOccupancyPercent=15 \
-jar paper-1.18.1-140.jar nogui "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment