how to increase java heap memory permanently?

前端 未结 5 1742
南笙
南笙 2020-12-02 23:14

I have one problem with java heap memory. I developed one client server application in java which is run as a windows service it requires more than 512MB of memory. I have 2

5条回答
  •  天涯浪人
    2020-12-03 00:06

    You also use this below to expand the memory

    export _JAVA_OPTIONS="-Xms512m -Xmx1024m -Xss512m -XX:MaxPermSize=1024m"

    Xmx specifies the maximum memory allocation pool for a Java virtual machine (JVM)

    Xms specifies the initial memory allocation pool.

    Xss setting memory size of thread stack

    XX:MaxPermSize: the maximum permanent generation size

提交回复
热议问题