Created
January 8, 2026 13:52
-
-
Save garbinmarcelo/bc39968108bfb9351bfbc6a7d3394636 to your computer and use it in GitHub Desktop.
PhpStorm 2025.3.1 - phpstorm64.exe.vmoptions
This file contains hidden or 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
| # ========================= | |
| # MEMÓRIA (equilíbrio p/ Copilot) | |
| # ========================= | |
| -Xms1024m | |
| -Xmx6144m | |
| # ========================= | |
| # GARBAGE COLLECTOR | |
| # ========================= | |
| -XX:+UseG1GC | |
| -XX:MaxGCPauseMillis=250 | |
| -XX:InitiatingHeapOccupancyPercent=50 | |
| -XX:G1ReservePercent=20 | |
| # ========================= | |
| # COPILOT / LATÊNCIA | |
| # ========================= | |
| -XX:+AlwaysPreTouch | |
| -XX:+UseStringDeduplication | |
| -XX:+DisableExplicitGC | |
| # ========================= | |
| # THREADS (importantíssimo) | |
| # ========================= | |
| -XX:CICompilerCount=3 | |
| # ========================= | |
| # METASPACE | |
| # ========================= | |
| -XX:MaxMetaspaceSize=768m | |
| # ========================= | |
| # FILESYSTEM / IO | |
| # ========================= | |
| -Dsun.io.useCanonCaches=false | |
| -Djava.io.tmpdir=C:\Temp\phpstorm | |
| # ========================= | |
| # UI / GPU | |
| # ========================= | |
| -Dsun.java2d.opengl=true | |
| -Dide.win.file.chooser.native=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment