cancel
Showing results for 
Search instead for 
Did you mean: 

Java VM Parameters

Former Member
0 Kudos

Hi,

Can you please define the following Java Parameters.

a. Initial Heap Size (Xms)

b. Maximum Heap Size (Xmx)

c. PermSize

d. MaxPermSize

e. MaxNewSize

f. NewSize

Thanks,

Tanuj

Accepted Solutions (1)

Accepted Solutions (1)

former_member182372
Active Contributor
0 Kudos

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

The Java heap is where the objects of a Java program live. It is a repository for live objects, dead objects, and free memory. When an object can no longer be reached from any pointer in the running program, it is considered "garbage" and ready for collection.

The JVM heap size determines how often and how long the VM spends collecting garbage.

Check these two links and you will find your answers:

http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=/com.ibm.websphere.express.doc...

http://edocs.bea.com/wls/docs81/perform/JVMTuning.html#1109778

Thanks & Regards,

Vijith