Currently I have a perl script that runs forever on my server, checking a SQS for data to compute. This script has been running for about 6 months with no problems what so ever.
So, now I want to switch over to PHP'S CLI, and have the script loop there forever. Mostly because I'm more familiar with PHP.
Basicly,
$i="forever";
while($i==="forever"){
doSomething();
sleep(10);
}
The script will do a shell_exec("/shell_script.sh"); that can take up to 2 hours to process. Will this trigger a max execution time or similar?
Is this "ok" to do? If not, what is the alternatives?