Re: JSP garbage collection

2004-06-05 Thread Tim Funk
Typically a JVM doesn't release memory to the OS. Removeing references to the objects should be enough. (Via explicit setting to null, or letter a variable fall out of scope from its block) -Tim Emre wrote: Where and when does garbage collection happen in the JSP pages. In my jsp pages I use

JSP garbage collection

2004-06-04 Thread Emre
Where and when does garbage collection happen in the JSP pages. In my jsp pages I use beans as well as importing some of my own java objects. What I am wondering is if I have to explicitly get rid of these objects. Because the memory usage never seems to go down during off peak hours. Any