-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

André,

On 3/20/13 6:52 AM, André Warnier wrote:
> If I may add something : at some point, on each Tomcat server,
> there is only 1 "listening socket" for one port (the point being :
> you could have several, but you won't have 8000).  So even if your
> clients really send 8000 TCP requests to the server at the same
> moment, they will be serialized at some point, and from the
> server's point of view, they come in one by one.

While that is true, the threaded-dispatch of those requests does mean
that many requests can be processed simultaneously. Yes, they are
de-queued serially, but that happens very quickly compared to the
duration of the actual requests.

So, you can have 200 simultaneous requests /in-process/... not that
they all arrive at the exact same instant in time, but that they are
all being served (i.e. have threads assigned and are actually doing
work) simultaneously.

- -chris
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iEYEAREIAAYFAlFJwWYACgkQ9CaO5/Lv0PAtSQCaA1QrSvIOd4GPEKsA2+RezsxQ
RW4AnRBtpcy4LBypi9ShRmproEcerrjd
=inUq
-----END PGP SIGNATURE-----

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to