All,
I have this test code
public class TestMemory
{
public static void main(String[] args)
{
byte[] myByte = new byte[1024 * 1024 * 200];
myByte = null;
System.gc();
while(true) {
}
}
}
When I am trying to run this from a java code then as
expected the heap size increases to 200 MB and then
comes back. However, when running this from a jython
intepreter, the memory seems not to be released at
all.
Anyone has faced the same issues and if there is a
solution to this?
Rgds,
Pratyush
Thanks
Pratyush
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|