aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/event-loop/examples/92-benchmark-timers.php
blob: e2e02e499589f557755ccc2f47666f6e6e91bd6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

use React\EventLoop\Factory;

require __DIR__ . '/../vendor/autoload.php';

$loop = Factory::create();

$n = isset($argv[1]) ? (int)$argv[1] : 1000 * 100;

for ($i = 0; $i < $n; ++$i) {
    $loop->addTimer(0, function () { });
}

$loop->run();