Last active
November 8, 2022 07:53
-
-
Save judepereira/5f4276fea45f2e0237e90ba5e4319f61 to your computer and use it in GitHub Desktop.
IntelliJ on steroids with G1 GC
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
-Xmx2048m | |
-Xss256k | |
-XX:+UseG1GC | |
-XX:InitiatingHeapOccupancyPercent=65 | |
-XX:G1HeapRegionSize=16m | |
-XX:MaxGCPauseMillis=100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works amazingly well, IntelliJ has been getting faster but now it feels snappy
Thanks for putting your research out there!