Sujet : Re: Apache + mod_php performance
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.os.vmsDate : 26. Sep 2024, 21:40:03
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vd4gr2$c3jf$5@dont-email.me>
References : 1 2 3 4 5 6 7 8
User-Agent : Pan/0.160 (Toresk; )
On Thu, 26 Sep 2024 09:44:14 -0500, Craig A. Berry wrote:
Whoever invented the term apparently thought fork() was the only
way to create a subprocess.
It is the most natural way in this case, because it creates a complete
copy of the parent process, which is what you want.
On VMS it will obviously use LIB$SPAWN or SYS$CREPRC.
Not only is that more expensive, it also requires additional setup to
recreate the effect of fork(2).