91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP中swoole process怎么用

發布時間:2021-07-27 14:18:39 來源:億速云 閱讀:154 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關PHP中swoole process怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

引入背景:假如我們每天有10000個訂單生成,需要同步到倉儲系統中去,以前做法是開啟一個crontab去跑這些任務,但是發現總有感覺同步效率低,間隔時間都是分鐘級別的。

解決方案測試:我們將同步訂單的任務表添加一個hash作為key,作為分發條件,因為mysql中select如果做mod函數是用不到索引的,所以我們自己做隨機hash,但是務必不需要范圍太大,以免服務器資源不夠,方法是根據hashkey投放到不同的進程中進行同步,測試代碼如下

<?php
/**
 * Created by PhpStorm.
 * User: xujun
 * Date: 2017/8/26
 * Time: 9:37
 */
//假定需要處理的數據如下
class Process{
  public $mpid=0;
  public $max_precess=5;
  //代替從數據庫中讀取的內容
  public $task = [
    ['uid'=>1,'uname'=>'bot','hash'=>1,'handle'=>'test'],
    ['uid'=>2,'uname'=>'bot1','hash'=>2,'handle'=>'test'],
    ['uid'=>3,'uname'=>'bot2','hash'=>3,'handle'=>'test'],
    ['uid'=>4,'uname'=>'bot3','hash'=>4,'handle'=>'test'],
    ['uid'=>2,'uname'=>'bot4','hash'=>2,'handle'=>'test'],
    ['uid'=>3,'uname'=>'bot5','hash'=>3,'handle'=>'test'],
    ['uid'=>4,'uname'=>'bot6','hash'=>1,'handle'=>'test'],
  ];
  public $works = [];
  public $swoole_table = NULL;
  //public $new_index=0;
  function test($index,$task){
    print_r("[".date('Y-m-d H:i:s')."]".'work-index:'.$index.'處理'.$task['uname'].'完成'.PHP_EOL);
  }

  public function __construct(){
    try {
      $this->swoole_table = new swoole_table(1024);
      $this->swoole_table->column('index', swoole_table::TYPE_INT);//用于父子進程間數據交換
      $this->swoole_table->create();

      swoole_set_process_name(sprintf('php-ps:%s', 'master'));
      $this->mpid = posix_getpid();
      $this->run();
      $this->processWait();
    }catch (\Exception $e){
      die('ALL ERROR: '.$e->getMessage());
    }
  }

  public function run(){
    for ($i=0; $i < $this->max_precess; $i++) {
      $this->CreateProcess();
    }
  }

  private function getTask($index){
    $_return = [];
    foreach ($this->task as $v){
      if($v['hash']==$index){
        $_return[] = $v;
      }
    }
    return $_return;
  }

  public function CreateProcess($index=null){
    if(is_null($index)){//如果沒有指定了索引,新建的子進程,開啟計數
      $index=$this->swoole_table->get('index');
      if($index === false){
        $index = 0;
      }else{
        $index = $index['index']+1;
      }
      print_r($index);
    }
    $this->swoole_table->set('index',array('index'=>$index));
    $process = new swoole_process(function(swoole_process $worker)use($index){

      swoole_set_process_name(sprintf('php-ps:%s',$index));
      $task = $this->getTask($index);
      foreach ($task as $v){
        call_user_func_array(array($this,$v['handle']),array($index,$v));
      }
      sleep(20);
    }, false, false);
    $pid=$process->start();

    $this->works[$index]=$pid;
    return $pid;
  }

  public function rebootProcess($ret){
    $pid=$ret['pid'];
    $index=array_search($pid, $this->works);
    if($index!==false){
      $index=intval($index);
      $new_pid=$this->CreateProcess($index);
      echo "rebootProcess: {$index}={$new_pid} Done\n";
      return;
    }
    throw new \Exception('rebootProcess Error: no pid');
  }

  public function processWait(){
    while(1) {
      if(count($this->works)){
        $ret = swoole_process::wait();
        if ($ret) {
          $this->rebootProcess($ret);
        }
      }else{
        break;
      }
    }
  }

}
$process = new Process();

這里代碼中,使用了swoole_table作為進程間共享的內存,為了分配index。以及當進程退出后,父進程通過wait重新拉起該進程任務。

測試截圖

進程ps

PHP中swoole process怎么用

結果 休眠20s后退出后會被自動拉起

PHP中swoole process怎么用

感謝各位的閱讀!關于“PHP中swoole process怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

腾冲县| 和田市| 深水埗区| 永顺县| 大宁县| 建昌县| 兴隆县| 正宁县| 格尔木市| 原平市| 丘北县| 靖安县| 新乡市| 繁峙县| 山东省| 神池县| 温泉县| 定陶县| 宣武区| 长兴县| 平顶山市| 炉霍县| 新建县| 揭阳市| 稻城县| 探索| 松原市| 上杭县| 垦利县| 丁青县| 澄城县| 湟中县| 洪泽县| 藁城市| 新兴县| 汝州市| 巧家县| 宜良县| 建瓯市| 昆明市| 嘉善县|