can anybody help me in understanding
how much memory is allocate to java program
by jvm
Andrew Thompson - 03 Oct 2005 20:17 GMT
> can anybody help me in understanding
> how much memory is allocate to java program
> by jvm
64 Meg, unless you use options at start-up
to give it more.
Rationem - 04 Oct 2005 00:29 GMT
Memory is allocated dynamically. Many JVM start with a small amount and
request more as required.
The exact choice is implementation specific.
You can set these values via -mx [num] and -ms [num] arguments where
num is a number followed by k (kilobytes), m (megabytes), or g
(gigabytes).