作者 邓超

x

@@ -23,9 +23,15 @@ function start(){ @@ -23,9 +23,15 @@ function start(){
23 _echo("业务进程({$worker_id})启动成功"); 23 _echo("业务进程({$worker_id})启动成功");
24 24
25 $goNum = 0; 25 $goNum = 0;
  26 + $timer = time();
26 // 循环阻塞 27 // 循环阻塞
27 while (true){ 28 while (true){
28 29
  30 + if(time()-$timer > 3600){
  31 + break;
  32 + }
  33 +
  34 +
29 // 需要同步的id 35 // 需要同步的id
30 $id = redis()->lPop('sync_email_lists'); 36 $id = redis()->lPop('sync_email_lists');
31 37