Skip to content

Fix memory benchmark #143

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 23, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions examples/95-benchmark-memory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

/**
* Run the script indefinitely seconds with the loop from the factory and report every 2 seconds:
* php test-memory.php
* php 95-benchmark-memory.php
* Run the script for 30 seconds with the stream_select loop and report every 10 seconds:
* php test-memory.php -t 30 -l StreamSelect -r 10
* php 95-benchmark-memory.php -t 30 -l StreamSelect -r 10
*/

use React\EventLoop\Factory;
Expand All @@ -26,17 +26,17 @@
$runs = 0;

if (5 < $t) {
$loop->addTimer($t, function (TimerInterface $timer) {
$timer->getLoop()->stop();
$loop->addTimer($t, function () use ($loop) {
$loop->stop();
});

}

$loop->addPeriodicTimer(0.001, function () use (&$runs, $loop) {
$runs++;

$loop->addPeriodicTimer(1, function (TimerInterface $timer) {
$timer->cancel();
$loop->addPeriodicTimer(1, function (TimerInterface $timer) use ($loop) {
$loop->cancelTimer($timer);
});
});

Expand Down
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy