Memory Allocation Pool

The Java virtual machine provides a limited amount of memory which can be used for application data. By default, this memory allocation pool is initialized to 2 megabytes and is limited to 64 megabytes. There are two command line options that control the size of the pool:

-Xms2m
Initial size
-Xmx64m
Maximum size

History

2005-01-30_16:11Created from misc/21