Do I use CRON to do this, or is there some other system? I have never done this before, but I would like to run some PHP scripts when the server load dies down and pause the scripts from running if the server load picks up.
|
feedback
|
|
Just run the PHP process with a high nice value, e.g. 19 - that way, it only gets processing time when no other process needs it. For example, use
on your shell. You can also use php's renice functionality: http://php.net/manual/en/function.proc-nice.php | |||||||||||
feedback
|