gpt4 book ai didi

php - Linux 上 php 服务内存使用率高

转载 作者:太空宇宙 更新时间:2023-11-04 04:35:33 26 4
gpt4 key购买 nike

每天使用4GB内存,根本不清理

有以下 php 脚本:

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

可以采取什么措施来防止这种情况发生?它应该是一个示例服务

最佳答案

看起来您正在使用 supervisord,为什么不交换该命令而不是通过 cron 运行它:

[program:phpscript]
command=/path/to/php /path/to/script.php
autostart=true
autorestart=true
startretries=3

关于php - Linux 上 php 服务内存使用率高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50501676/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com