Bench\Ab::runOnePass PHP Method

runOnePass() protected method

protected runOnePass ( $href, $conc, $log_file )
    protected function runOnePass($href, $conc, $log_file)
    {
        $cmd = "{$this->ab} "
             . "-c {$conc} "
             . "-t {$this->seconds} "
             . "$href > {$log_file}";
        
        passthru($cmd);
    }