Add cache to performance arrays

This commit is contained in:
Hypolite Petovan 2018-03-01 01:13:50 -05:00
parent 4954c4b9aa
commit 22fd2409ca
1 changed files with 4 additions and 0 deletions

View File

@ -148,6 +148,8 @@ class App
$this->performance['start'] = microtime(true); $this->performance['start'] = microtime(true);
$this->performance['database'] = 0; $this->performance['database'] = 0;
$this->performance['database_write'] = 0; $this->performance['database_write'] = 0;
$this->performance['cache'] = 0;
$this->performance['cache_write'] = 0;
$this->performance['network'] = 0; $this->performance['network'] = 0;
$this->performance['file'] = 0; $this->performance['file'] = 0;
$this->performance['rendering'] = 0; $this->performance['rendering'] = 0;
@ -157,6 +159,8 @@ class App
$this->callstack['database'] = []; $this->callstack['database'] = [];
$this->callstack['database_write'] = []; $this->callstack['database_write'] = [];
$this->callstack['cache'] = [];
$this->callstack['cache_write'] = [];
$this->callstack['network'] = []; $this->callstack['network'] = [];
$this->callstack['file'] = []; $this->callstack['file'] = [];
$this->callstack['rendering'] = []; $this->callstack['rendering'] = [];