Last active
July 26, 2019 16:12
-
-
Save shaybensasson/d8680308f97d3393bc06fd45e0e77ba2 to your computer and use it in GitHub Desktop.
custom PyCharm VM options to increase memory of env
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
| # custom PyCharm VM options | |
| -Xms256m | |
| -Xmx5120m | |
| -XX:ReservedCodeCacheSize=240m | |
| -XX:+UseConcMarkSweepGC | |
| -XX:SoftRefLRUPolicyMSPerMB=50 | |
| -ea | |
| -Dsun.io.useCanonCaches=false | |
| -Djava.net.preferIPv4Stack=true | |
| -Djdk.http.auth.tunneling.disabledSchemes="" | |
| -XX:+HeapDumpOnOutOfMemoryError | |
| -XX:-OmitStackTraceInFastThrow | |
| -Dawt.useSystemAAFontSettings=lcd | |
| -Dsun.java2d.renderer=sun.java2d.marlin.MarlinRenderingEngine |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment