Be carefull what you are exactly testing.
If your test script doesn't handle the sessionid
(from cookie or url) you create a session with
every request, each of them will live until it's
configured lifetime is over (default: 30 minutes
of inactivity I beleave) and require some amount
of memory for the time it lives.
It is very likely that you had about 8000 sessions
in parallel.
> -----Urspr�ngliche Nachricht-----
> Von: carsten [mailto:[EMAIL PROTECTED]]
> Gesendet: Dienstag, 24. Oktober 2000 11:13
> An: [EMAIL PROTECTED]
> Betreff: BUG: memory leak
<snip/>
> After running small tests with Tomcat 3.2 I have troubles with memory.
> With about 8000 request on HelloWorld Servlet I run out ouf memory
:-(.
> The application allocates more and more memory.
<snip/>