|
@@ -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
|
|