mirror of
https://github.com/friendica/friendica
synced 2024-11-10 06:22:53 +00:00
Add cache to performance arrays
This commit is contained in:
parent
4954c4b9aa
commit
22fd2409ca
1 changed files with 4 additions and 0 deletions
|
@ -148,6 +148,8 @@ class App
|
|||
$this->performance['start'] = microtime(true);
|
||||
$this->performance['database'] = 0;
|
||||
$this->performance['database_write'] = 0;
|
||||
$this->performance['cache'] = 0;
|
||||
$this->performance['cache_write'] = 0;
|
||||
$this->performance['network'] = 0;
|
||||
$this->performance['file'] = 0;
|
||||
$this->performance['rendering'] = 0;
|
||||
|
@ -157,6 +159,8 @@ class App
|
|||
|
||||
$this->callstack['database'] = [];
|
||||
$this->callstack['database_write'] = [];
|
||||
$this->callstack['cache'] = [];
|
||||
$this->callstack['cache_write'] = [];
|
||||
$this->callstack['network'] = [];
|
||||
$this->callstack['file'] = [];
|
||||
$this->callstack['rendering'] = [];
|
||||
|
|
Loading…
Reference in a new issue