php - Apache Webserver : What happens to requests already sent in loop after The connection has timed out -


i have written script create images in loop , loop size 10k. happens after period of time browser shows "the connection has timed out". can still see images being created in specific folder i.e apache still processing request.

the point of concern happens http aapche server requests sent in loop after connection has timed out.

i curious know apache queue system in detail.

you may looking ignore_user_abort directive. there more timeouts in place. apache request timeout (the time apache lets user wait first data). may different max_execution_time in php. if ignore user abort enabled, both timers start. after time apache times out , sends reponse. script in background still runs until either finishes or max_execution_time reached. if disable ignore user abort, script stopped when apache sends timeout user.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -