I would also consider turning of keepalive. Unfortunately tomcat (and apache)
both setup one thread per connection. You may be able to use squid as a
reverse proxy if you are having load/ number of connection/ thread problems
depending on your application


Andrew


On Jan 24, 2005, at 10:11 PM, Filip Hanik - Dev wrote:

maxThreads="150"

your server can handle a maximum of 150 concurrent clients

minSpareThreads="25"
if your server is idle, it will at least have 25 threads waiting to handle requests

maxSpareThreads="75"
if your server is idle, it will have no more than 75 threads waiting to handle requests

you get the direction this is going in, right?
Filip



My server tends to lock out a user who bombards it
with requests so I'm wondering whether those options
have anything to do with it before I post the problem
here.




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to