Bench\HttpLoad::runOnePass PHP Method

runOnePass() protected method

protected runOnePass ( $href, $conc, $log_file )
    protected function runOnePass($href, $conc, $log_file)
    {
        file_put_contents($this->http_load_file, $href);
        
        $cmd = "{$this->http_load} "
             . "-parallel {$conc} "
             . "-seconds {$this->seconds} "
             . "{$this->http_load_file} > {$log_file}";
        
        passthru($cmd);
    }