RE: Tomcat Memory usage(Urgent!)

2002-03-08 Thread Chris Pheby
Each of these processes correlates to a /thread/. The processes are sharing memory for the most part - something that ps or top don't make clear. Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Galbayar Sent: 08 March 2002 09:24 To: Tomcat Users

Re: Tomcat Memory usage(Urgent!)

2002-03-08 Thread Boily Sylvain
hi all , Well how is possible to give back memory ? Because after 2 days the memory is full. thx Chris Pheby wrote: Each of these processes correlates to a /thread/. The processes are sharing memory for the most part - something that ps or top don't make clear. Chris -Original

Re: Tomcat Memory usage(Urgent!)

2002-03-08 Thread David Cassidy
within your program you might want to check out Runtime runtime = Runtime.getRuntime; runtime.freeMemory() vs runtime.totalMemory() This will let you know what it's really using.. But as top says it's only 59M then I'd be looking at other processes in your ps list Hope this helps D Boily

RE: Tomcat Memory usage(Urgent!)

2002-03-08 Thread Arnaud Heritier
Cassidy [SMTP:[EMAIL PROTECTED]] Date: vendredi 8 mars 2002 12:05 A:Tomcat Users List Objet:Re: Tomcat Memory usage(Urgent!) within your program you might want to check out Runtime runtime = Runtime.getRuntime; runtime.freeMemory() vs runtime.totalMemory() This will let

RE: Tomcat Memory usage(Urgent!)

2002-03-08 Thread Manish Bhatnagar
- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of David Cassidy Sent: Friday, March 08, 2002 4:35 PM To: Tomcat Users List Subject: Re: Tomcat Memory usage(Urgent!) within your program you might want to check out Runtime runtime = Runtime.getRuntime