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
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