Increase heap size in Java

后端 未结 12 2261
情深已故
情深已故 2020-11-21 05:26

I am working on a Windows 2003 server (64-bit) with 8 GB RAM. How can I increase the heap memory maximum? I am using the -Xmx1500m flag to increase the heap siz

12条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-11-21 05:52

    You can increase to 4GB on a 32 bit system. If you're on a 64 bit system you can go higher. No need to worry if you've chosen incorrectly, if you ask for 5g on a 32 bit system java will complain about an invalid value and quit.

    As others have posted, use the cmd-line flags - e.g.

    java -Xmx6g myprogram
    

    You can get a full list (or a nearly full list, anyway) by typing java -X.

提交回复
热议问题