We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32079c4 commit 14c8f20Copy full SHA for 14c8f20
2 files changed
app/V1Module/presenters/base/BasePresenter.php
@@ -106,6 +106,7 @@ protected function verifyUserIpLock(User $user)
106
public function startup()
107
{
108
parent::startup();
109
+ set_time_limit(20);
110
$this->application->errorPresenter = "V1:ApiError";
111
112
try {
performance-test.php
@@ -12,8 +12,8 @@ class PerformanceTest
12
13
protected static $defaultName = 'test:performance';
14
15
- private static $warmupIterations = 100;
16
- private static $measureIterations = 1000;
+ private static $warmupIterations = 10_000;
+ private static $measureIterations = 100_000;
17
private $tests = [];
18
public $output = [];
19
0 commit comments