Spawning HTTPD processes
- by felix001
Can any confirm how Apache spawns new children ?
As in if I connect to a webserver (HTTP 1.0 / no keep alive) and issue a HTTP /GET I will be spawned a new HTTPD child. If then issue another HTTP /GET then a new TCP connection will be built.
However will I use the same child process of would I spawn a new one ?
Also if I was using HTTP 1.1 (with keep-alive) and reused the same TCP connection, would the httpd process/spawning be any different to that if I wasnt using keepalive ?
Thanks,