Overall, the servlets do not use more system resources.  CGI has to spawn
an entire new process (with full memory overhead) for each incoming
request.  Java starts up the process (and memory overhead) only once, and
simply gives out a new Thread to handle the requesting.

-dave

On Tue, 16 Feb 1999, John Goerzen wrote:

> On Tue, Feb 16, 1999 at 04:34:03PM -0800, Kevin Hester wrote:
> 
> But what techincal advantage do they really give?  Java is slower, uses more
> system resources, etc.
> 
> John
> 
> 

Reply via email to