There is a 4gb memory usage per day and it does not clean at all
Have the following php script :
while(1){
sleep(15);
$data = // get data
foreach ($data as $d){
//get the db status
// make api call in same ip to update server
// write log
}
}
service linux code (via docker):
[program:cron]
command=/bin/bash -c "exec cron -f"
autostart=true
autorestart=true
startretries=3
What can be done to prevent that? it should be a sample service