我正在對我的網站進行基準測試。Codeigniter基準測試,這些ms來自哪裏?
class Home extends Controller {
function Home()
{
parent::Controller();
$this->benchmark->mark('Constructor_start');
$this->output->enable_profiler(TRUE);
$this->load->library ('MasterPage');
$this->benchmark->mark('Constructor_end');
}
function index()
{
$this->benchmark->mark('Index_start');
$this->masterpage->setMasterPage('master/home');
$this->masterpage->addContent('home/index', 'page');
$this->masterpage->show();
$this->benchmark->mark('Index_end');
}
}
這些結果如下:
加載時間基本類:0.0076
構造:0.0007
指數:0.0440
執行時間控制器(首頁/索引):0.4467
總執行時間:0.4545'
我說不定d以下:
- 加載時基類(0.0076)
- 構造函數(0.0007)
- 指數(0.0440)
但其中的其餘時間是從哪裏來的?
結果的單位是什麼? – MrD 2014-11-08 08:46:16