示例#1
0
<?php

require __DIR__ . '/util.php';
$worker = new \GearmanWorker();
$worker->addServer('127.0.0.1', 4730);
$worker->addFunction('expensive', function (\GearmanJob $job) {
    $workload = json_decode($job->workload(), true);
    doExpensiveThing($workload['hogtime']);
});
while ($worker->work()) {
}
示例#2
0
文件: 2.php 项目: michaelmoussa/talks
<?php

/**
 * Example of how adding expensive operation reduces throughput and quality of
 * service while increasing resource utilization.
 *
 * ab -n 10000 -c 250 "http://192.168.133.71/demo/2.php"
 */
require __DIR__ . '/../../src/util.php';
echo file_get_contents(__DIR__ . '/bootstrap.html');
doExpensiveThing(rand(1, 3));