On Fri, 23 Mar 2001, c cw288 wrote:

> Hi,
> 
> When a client make a request to a server and a servlet get call,
> the servlet then create an instance for that client.

That is not what really happens.  Instead, a single instance of your
servlet is called multiple times simultaneously, on multiple processing
threads.

> My question is, how many clients can a servlet handle.
> 

The maximum is determined by how many threads you configure in the
container's setup configuration, and is ultimately limited by how many
threads your JDK and operating system can support.

> Thanks,
> Kathy.

Craig McClanahan

Reply via email to