Implementation method of PHP multi-task second-level timer

不言
Release: 2023-03-28 20:44:01
Original
1619 people have browsed it

This article mainly introduces the implementation method of PHP multi-task second-level timer. It is very good and has certain reference value. Friends in need can refer to it

Description

When I was deploying crontab in my company recently, I suddenly thought about whether I could use PHP to implement a timer. The granularity could be down to the second level, because the crontab can reach up to the minute level. I also did some research. After a while, there are not many timers implemented in PHP. The Swoole extension implements a millisecond-level timer, which is very efficient, but after all, it is not written in pure PHP code, so I finally considered using PHP to implement a timer. category for learning reference.

Implementation

When implementing the timer code, two extensions that come with the PHP system are used

Pcntl - Multi-process extension:

Mainly allows PHP to open many sub-processes at the same time and process some tasks in parallel.

Spl - SplMinHeap - Small top heap

A small top heap data structure. When implementing a timer, using this structure is very efficient. The time complexity of insertion and deletion is very low. It is O(logN). Timers like libevent also used rbtree before adopting this data structure after version 1.4. If a linked list or fixed array is used, each insertion or deletion may need to be traversed or sorted again. There are still some performance issues.

Flow Description

1. Define the timer structure, what parameters are there.2. Then register them all into our timer class Timer.

3. Call the monitor method of the timer class to start monitoring.

4. The monitoring process is an endless while loop, constantly checking whether the top of the time heap has expired. I originally considered looping to check once every second, but later I thought that there is still a problem in looping to check once every second. If it happens to be When we sleep(1), the timer has expired, so we cannot execute it accurately right away, and there may be a risk of delay, so we still use usleep(1000) to see it in milliseconds and hang the process. Reduce CPU load.Code




 /***
 * Class Timer
 */
 class Timer extends SplMinHeap
 {
   /**
   * 比较根节点和新插入节点大小
   * @param mixed $value1
   * @param mixed $value2
   * @return int
   */
   protected function compare($value1, $value2)
   {
     if ($value1['timeout'] > $value2['timeout']) {
       return -1;
     }
     if ($value1[&#39;timeout&#39;] < $value2[&#39;timeout&#39;]) {
       return 1;
     }
     return 0;
   }
   /**
   * 插入节点
   * @param mixed $value
   */
   public function insert($value)
   {
     $value[&#39;timeout&#39;] = time() + $value[&#39;expire&#39;];
     parent::insert($value);
   }
   /**
   * 监听
   * @param bool $debug
   */
   public function monitor($debug = false)
   {
     while (!$this->isEmpty()) {
       $this->exec($debug);
       usleep(1000);
     }
   }
   /**
   * 执行
   * @param $debug
   */
   private function exec($debug)
   {
     $hit = 0;
     $t1  = microtime(true);
     while (!$this->isEmpty()) {
       $node = $this->top();
       if ($node[&#39;timeout&#39;] <= time()) {
         //出堆或入堆
         $node[&#39;repeat&#39;] ? $this->insert($this->extract()) : $this->extract();
         $hit = 1;
         //开启子进程
         if (pcntl_fork() == 0) {
           empty($node[&#39;action&#39;]) ? &#39;&#39; : call_user_func($node[&#39;action&#39;]);
           exit(0);
         }
         //忽略子进程,子进程退出由系统回收
         pcntl_signal(SIGCLD, SIG_IGN);
       } else {
         break;
       }
     }
     $t2 = microtime(true);
     echo ($debug && $hit) ? &#39;时间堆 - 调整耗时: &#39; . round($t2 - $t1, 3) . "秒\r\n" : &#39;&#39;;
   }
 }
Copy after login

Example

$timer = new Timer();
//注册 - 3s - 重复触发
$timer->insert(array(&#39;expire&#39; => 3, &#39;repeat&#39; => true, &#39;action&#39; => function(){
  echo &#39;3秒 - 重复 - hello world&#39; . "\r\n";
}));
//注册 - 3s - 重复触发
$timer->insert(array(&#39;expire&#39; => 3, &#39;repeat&#39; => true, &#39;action&#39; => function(){
  echo &#39;3秒 - 重复 - gogo&#39; . "\r\n";
}));
//注册 - 6s - 触发一次
$timer->insert(array(&#39;expire&#39; => 6, &#39;repeat&#39; => false, &#39;action&#39; => function(){
  echo &#39;6秒 - 一次 - hello xxxx&#39; . "\r\n";
}));
//监听
$timer->monitor(false);
Copy after login

Execution results

We have also tested extreme situations, At the same time, all 1000 timers expire in 1s, and it only takes 0.126s to adjust the time stack. This is no problem, but every time a timer is adjusted, a child process needs to be started. This may be more time-consuming, and it is possible If these 1,000 items cannot be processed in 1 second, it will affect the monitoring to continue to trigger next time. However, if the child process is not started, for example, it can still be processed if executed directly. . . . Of course there must be a better way, but this is the only thing I can think of at the moment.

Related recommendations:

php database cache implementation ideas



The above is the detailed content of Implementation method of PHP multi-task second-level timer. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!