作者 邓超

sync

@@ -17,9 +17,18 @@ function start(){ @@ -17,9 +17,18 @@ function start(){
17 $pm = new Process\Manager(); 17 $pm = new Process\Manager();
18 18
19 // 启动业务进程 19 // 启动业务进程
20 - $pm->addBatch(10,function (Process\Pool $pool, int $worker_id){ 20 + $pm->addBatch(11,function (Process\Pool $pool, int $worker_id){
21 21
22 - swoole_set_process_name('php-email-sync-list-'.$worker_id); 22 + if($worker_id===0){
  23 + $i=43200;
  24 + while($i>0){
  25 + $i--;
  26 + co::sleep(1);
  27 +
  28 + }
  29 + $pool->shutdown();
  30 + return 0;
  31 + }
23 32
24 include_once __DIR__."/../vendor/autoload.php"; 33 include_once __DIR__."/../vendor/autoload.php";
25 _echo("业务进程({$worker_id})启动成功"); 34 _echo("业务进程({$worker_id})启动成功");
@@ -5,7 +5,19 @@ @@ -5,7 +5,19 @@
5 $pm = new \Swoole\Process\Manager(); 5 $pm = new \Swoole\Process\Manager();
6 6
7 // 启动业务进程 7 // 启动业务进程
8 -$pm->addBatch(2,function (\Swoole\Process\Pool $pool, int $worker_id){ 8 +$pm->addBatch(3,function (\Swoole\Process\Pool $pool, int $worker_id){
  9 +
  10 + if($worker_id===0){
  11 + $i=600;
  12 + while($i>0){
  13 + $i--;
  14 + co::sleep(1);
  15 +
  16 + }
  17 + $pool->shutdown();
  18 + return 0;
  19 + }
  20 +
9 //error_reporting(); 21 //error_reporting();
10 include_once __DIR__."/../vendor/autoload.php"; 22 include_once __DIR__."/../vendor/autoload.php";
11 23
@@ -23,7 +35,7 @@ $pm->addBatch(2,function (\Swoole\Process\Pool $pool, int $worker_id){ @@ -23,7 +35,7 @@ $pm->addBatch(2,function (\Swoole\Process\Pool $pool, int $worker_id){
23 // _echo('读取到'.$id); 35 // _echo('读取到'.$id);
24 if($id && is_numeric($id)){ 36 if($id && is_numeric($id)){
25 // 占用当前的id,占用2小时 37 // 占用当前的id,占用2小时
26 - if(redis()->add('just_sync_'.$id,time(),600)){ 38 + if(redis()->add('just_sync_'.$id,time(),300)){
27 39
28 \Lib\SwGo::start(function ($id){ 40 \Lib\SwGo::start(function ($id){
29 41