Re: memory and/or ms problem

2001-03-02 Thread Match Grun
So what is the tip from Randy? I also have a possible suggestion, which may be of help: If you are using JDBC, you should always ensure that you close the connection to the database. Database connections typically consume a lot of resource (Oracle uses a process per connection, I am not sure abo

Re[3]: memory and/or ms problem

2001-03-02 Thread Gerd Trautner
hi randy, thanks for your tips! i think i found the reason for the growing memory consumption of my servlets. preconditions: i use servlets to get data out and in a mysql database and generate html pages with PrintWriter.print(...) statements. my servlets often use: ... Statement Stmt = C.create

Re[3]: memory and/or ms problem

2001-03-02 Thread Gerd Trautner
hi all, i found the reason for the growing memory consumption of my servlets. preconditions: i use servlets to get data out and in a mysql database and generate html pages with PrintWriter.print(...) statements. my servlets often use: ... Statement Stmt = C.createStatement(); ResultSet RS = Stmt

Re[3]: memory and/or ms problem

2001-03-02 Thread Gerd Trautner
hi all, i found the reason for the growing memory consumption of my servlets. preconditions: i use servlets to get data out and in a mysql database and generate html pages with PrintWriter.print(...) statements. my servlets often use: ... Statement Stmt = C.createStatement(); ResultSet RS = Stmt

Re[2]: memory and/or ms problem

2001-03-01 Thread Gerd Trautner
Hi Randy, Thursday, March 01, 2001, 1:15:06 PM, you wrote: RL> Look at your code. My experience has been that Tomcat doesn't leak RL> any memory. Check that you haven't set your sessions to never time out RL> (otherwise each session will continue to collect digital dust). Also check R

RE: memory and/or ms problem

2001-03-01 Thread Randy Layman
ic classes that continue to grow with each request (in-memory logs that flush to disk when some event happens would one example of a place to look). Randy -Original Message- From: Gerd Trautner [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 6:16 AM To: tomcat-user Subject: m

Re: memory and/or ms problem

2001-03-01 Thread Oleg L. Sverdlov
9-745-5220 Fax: +972-9-745-2521 - Original Message - From: "Gerd Trautner" <[EMAIL PROTECTED]> To: "tomcat-user" <[EMAIL PROTECTED]> Sent: Thursday, March 01, 2001 1:16 PM Subject: memory and/or ms problem > Hi tomcat-users, > > I

memory and/or ms problem

2001-03-01 Thread Gerd Trautner
Hi tomcat-users, I am having some memory related troubles with my servlets running on tomcat 3.2.1 on an win nt 4 workstation machine. I read all previous messages in the list with the term "memory" in it, but everything i try does not help. problem: the memory consumption of the java.exe increa