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.

link|improve this question

feedback

1 Answer

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

$ nice -n 19 php path/to/your/php/script.php

on your shell.

You can also use php's renice functionality: http://php.net/manual/en/function.proc-nice.php

link|improve this answer
I'm not sure what the process is, or nice values... but I can look up nice values. – 千里ちゃん Oct 23 '11 at 12:08
Hmmm. Could you tell me if it's PHP, the PHP script, or SQL that is the process? – 千里ちゃん Oct 23 '11 at 15:03
Are you running you Script as CLI or Apache / CGI? – TimWolla Oct 23 '11 at 15:51
@Tim, I suppose I'm using it as CLI because I'm not sure how to use CGI, but I do have Apache installed. – 千里ちゃん Oct 24 '11 at 2:13
Is there any alternative for a shared host? – 千里ちゃん Oct 24 '11 at 7:46
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.