PHP Classes

File: vendor/react/event-loop/examples/91-benchmark-ticks.php

Recommend this page to a friend!
  Classes of Hillary Kollan   Chatto PHP Websocket Chat System   vendor/react/event-loop/examples/91-benchmark-ticks.php   Download  
File: vendor/react/event-loop/examples/91-benchmark-ticks.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Chatto PHP Websocket Chat System
Websocket based chat system using Ratchet library
Author: By
Last change:
Date: 3 years ago
Size: 250 bytes
 

Contents

Class file image Download
<?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->futureTick(function () { });
}

$loop->run();