Ebay doesn't do web service on their big iron Sparc machine... as
noted in the text you trimmed, they have a separate pool of smaller
servers for that. (They're NT boxes running IIS, and as Kragen sussed
out, apparently using ISAPI for their custom code, which is the IIS
native plug-in API --- vaguely like mod_perl, except using languages
other than perl).
Still, I'm curious; yours is the first suggestion I've seen in a while
that straight CGI is a particularly fast way of running a heavily
database-backed site like ebay, on any hardware. Could you elaborate?
I'm particularly interested in how you handle connections to the
database in this kind of environment; persistent database connections
are usually reckoned to be a real advantage of mod_perl-type solutions
(or, say, FastCGI, Java servlet engines, etc.) over straight,
fork-and-exec CGI scripts.
(The usual argument along these lines is spelled out in
http://photo.net/wtr/thebook/server-programming.html
in Phil Greenspun's usual pungent style... it's toward the middle of
the chapter, under the heading "Step 3: Choose a program invocation
mechanism").
rst