Date: 09/12/98
- Next message: Jonathan Sanders: "[PHP3] global variables"
- Previous message: Rasmus Lerdorf: "Re: [PHP3] ["fhttpd-does-it-right" semi-rant] Limiting maximum number of connections to database"
- In reply to: Rasmus Lerdorf: "Re: [PHP3] ["fhttpd-does-it-right" semi-rant] Limiting maximum number of connections to database"
- Next in thread: Rasmus Lerdorf: "Re: [PHP3] Limiting maximum number of connections to database"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Sat, 12 Sep 1998, Rasmus Lerdorf wrote:
> > pointing to it for every script.
>
> What overhead? There is no overhead. You have a central process which
> directs traffic to other processes or process pools. That is exactly the
> same architecture are your fhttpd and the overhead will be the same.
mod_rewrite, if used as proxy, relays the data in both directions
through itself -- in Apache you can't redirect to anything that is not a
URL, and only if target URL is in another [virtual] server, mod_rewrite
will send request to another process thus becoming a proxy.
fhttpd does completely different thing -- once request is received and
parsed, file descriptor is copied to the chosen process, and parsed data
is passed to the same process. There is also a "relaying" mode where
parsed request is set to process, and response is relayed to the client,
however it's used only for remote modules and in situations where module
is incapable or not trusted to handle client's connection.
-- Alex-- PHP 3 Mailing List http://www.php.net/ To unsubscribe send an empty message to php3-unsubscribe <email protected> To subscribe to the digest list: php3-digest-subscribe <email protected> For help: php3-help <email protected> Archive: http://www.php.net/mailsearch.php3
- Next message: Jonathan Sanders: "[PHP3] global variables"
- Previous message: Rasmus Lerdorf: "Re: [PHP3] ["fhttpd-does-it-right" semi-rant] Limiting maximum number of connections to database"
- In reply to: Rasmus Lerdorf: "Re: [PHP3] ["fhttpd-does-it-right" semi-rant] Limiting maximum number of connections to database"
- Next in thread: Rasmus Lerdorf: "Re: [PHP3] Limiting maximum number of connections to database"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

