作者 邓超

sync

<?php
// 进程管理器
$pm = new \Swoole\Process\Manager();
// 启动业务进程
$pm->addBatch(5,function (\Swoole\Process\Pool $pool, int $worker_id){
//error_reporting();
include_once __DIR__."/../vendor/autoload.php";
class SyncEmailMy{
_echo('子进程重新启动了==>'.$worker_id);
\Lib\DbPool::$clientNumber = 52;
\Lib\RedisPool::$clientNumber = 52;
while (1){
static $maxGo = 0;
if(\Lib\SwGo::$runNumber >= 50){
co::sleep(1);
continue;
}
public static function sync(){
while (1){
$id = redis()->lPop('sync_email_lists_my');
// _echo('读取到'.$id);
if($id && is_numeric($id)){
// 占用当前的id,占用2小时
if(redis()->add('just_sync_'.$id,time(),600)){
// if(self::$maxGo >= 50){
// co::sleep(1);
// continue;
// }
\Lib\SwGo::start(function ($id){
$id = redis()->lPop('sync_email_lists_my');
// _echo('读取到'.$id);
if($id && is_numeric($id)){
// 占用当前的id,占用2小时
if(redis()->add('just_sync_'.$id,time(),600)){
try{
// 开始同步
(new \Service\SyncMail($id))->isUidAfter(2)->sync();
}catch (Throwable $e){
_echo($e->getMessage());
}
self::go($id);
redis()->expire('just_sync_'.$id,30);
},$id);
}
// co::sleep(0.2);
}else{
sleep(1);
}
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();
}catch (Throwable $e){
_echo($e->getMessage());
}
// co::defer(function () use ($id){
// self::$maxGo--;
// 30秒后 消除占用
redis()->expire('just_sync_'.$id,30);
\Lib\Log::getInstance()->write();
// db()->close();
// });
// },$id);
}
}
// 进程管理器
$pm = new \Swoole\Process\Manager();
// 启动业务进程
$pm->addBatch(100,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();
},false);
},true);
$pm->start();
... ...
... ... @@ -19,6 +19,17 @@ class RedisPool {
*/
static $pool = null;
/**
* 获取到的连接
* @var array
*/
public static $clientAll = [];
/**
* 连接的数量
* @var int
*/
public static $clientNumber = 1024;
/**
* RedisPool constructor.
... ... @@ -33,35 +44,39 @@ class RedisPool {
->withAuth(REDIS_PASSWORD)
->withDbIndex(REDIS_DB)
->withTimeout(60)
,1024
,self::$clientNumber
);
}
// 获取一个连接,放入当前实例
$this->client = static::$pool->get();
}
public function getClient()
{
$id = \co::getCid();
if(empty(static::$clientAll[$id])){
static::$clientAll[$id] = self::$pool->get();
}
return static::$clientAll[$id];
}
public function __destruct()
{
$this->close();
// $this->close();
}
/**
* 关闭
* 关闭链接
* @author:dc
* @time 2023/3/16 13:42
* @time 2024/5/30 10:30
*/
public function close(){
self::$pool->put($this->client);
$this->client = null;
$id = \co::getCid();
if (isset(static::$clientAll[$id])){
self::$pool->put(static::$clientAll[$id]);
}
unset(static::$clientAll[$id]);
}
... ...