From: Robert W. B. <rb...@di...> - 2001-10-18 01:55:31
|
On Wed, 17 Oct 2001, Robert Welch wrote: > Folks: > > How can I control the way jython invokes the Java vm? Edit the jython startup script. The command "jython" is really a shell script (jython.bat on windows) that executes Java with the appropriate options and parameters. Add the -Xmx1024m to the command in the file if that is the option you need. > In particular, I'd like it to invoke java as follows: > > java -Xmx1024m > > because I'm creating huge vectors and I'm getting out of > memory exceptions. -robert |