On Wed, 2002-07-17 at 19:03, Jason Wallwork wrote: > On July 17, 2002 12:06 pm, you wrote: > > >Can you define what you mean by overhead and provide a quick comparison of > > >Zope overhead vs. PHP overhead? > > > > Zope is daemon that needs to run all the time. PHP only runs when apache > > needs it. > > And how big is this daemon (i.e. memory size)? The reason I ask is that: > > Apache + PHP (2 daemons or more, unless just non-PHP pages) -- assuming I've > understood correctly
No, PHP is not a separate daemon. It an apache module. It runs as part of the HTTPD process. When you request a page, one of the dormant httpd processes will pick it up and process it. If you where to watch the processes, an httpd process will be come active and maybe a mysqld process or two if you have a database driven site. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
