I have a Cron for each user of my project executing a php script every 5 minutes that takes about 4 minutes to get executed. I couldnt find a "lighter" way to do it!
But now I'm facing memory problems, because sometimes files get executed in the same "space of time" and it make my virtual memory to go up!
I've tried to make my loops lighter but they are still consuming 25MB for each file!
If you guys have any good solution I would appreciate :). Here it is
for($x = 0; $x <= 14; $x++)
{
$r = rand(0,7);
$jsonData = $this->getsomejson($value[$r]);
if ($this->meta->code == 400){continue;}
foreach ((array)$jsonData->data as $key=>$value)
{
$result = doSomething($value->id,$Token[$x]);
if ($result==200){$L++;}
$i++;
unset($value);
}
unset($r,$jsonData,$value);
}