sync.php
748 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
//error_reporting();
use Swoole\Process;
include_once __DIR__."/../vendor/autoload.php";
swoole_set_process_name('php-email-sync-list');
function start(){
// 需要同步的id
$id = redis()->lPop('sync_email_lists');
if($id && is_numeric($id)){
// 占用当前的id,占用2小时
if(redis()->add('just_sync_'.$id,time(),600)){
go(function () use ($id){
echo \Swlib\SaberGM::get('http://mail-serve.hagro.cn/v3/sync?id='.$id);
});
}
}else{
co::sleep(1);
}
//每次都暂停1秒,防止同一时间启动太多的任务
co::sleep(0.5);
}
\Co\run(function (){
// 循环阻塞
while (true) {
start();
}
});