作者 邓超

proxy

<?php
//error_reporting();
include_once __DIR__."/../vendor/autoload.php";
swoole_set_process_name('php-email-sync-list-my');
\Lib\DbPool::$clientNumber = 60;
\Co\run(function (){
$goNum = 0;
class SyncEmailMy{
static $maxGo = 0;
public static function sync(){
while (1){
if($goNum>=50){
if(self::$maxGo >= 50){
co::sleep(1);
continue;
}
... ... @@ -22,8 +21,20 @@ swoole_set_process_name('php-email-sync-list-my');
// 占用当前的id,占用2小时
if(redis()->add('just_sync_'.$id,time(),600)){
go(function ($id) use (&$goNum){
$goNum++;
self::go($id);
}
co::sleep(0.2);
}else{
co::sleep(1);
}
}
}
public static function go($id){
go(function ($id){
self::$maxGo++;
try{
// 开始同步
(new \Service\SyncMail($id))->isUidAfter(2)->sync();
... ... @@ -31,8 +42,8 @@ swoole_set_process_name('php-email-sync-list-my');
_echo($e->getMessage());
}
co::defer(function () use ($id,&$goNum){
$goNum--;
co::defer(function () use ($id){
self::$maxGo--;
// 30秒后 消除占用
redis()->expire('just_sync_'.$id,30);
... ... @@ -41,16 +52,31 @@ swoole_set_process_name('php-email-sync-list-my');
db()->close();
});
},$id);
}
}
// 进程管理器
$pm = new \Swoole\Process\Manager();
// 启动业务进程
$pm->addBatch(2,function (\Swoole\Process\Pool $pool, int $worker_id){
//error_reporting();
include_once __DIR__."/../vendor/autoload.php";
_echo('子进程重新启动了==>'.$worker_id);
\Lib\DbPool::$clientNumber = 60;
SyncEmailMy::sync();
},true);
$pm->start();
}
co::sleep(0.2);
}else{
co::sleep(1);
}
}
});
... ...