This commit is contained in:
2025-10-09 17:41:57 +00:00
commit 7a3b2960f8
146 changed files with 34948 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
use GlobalData\Client;
require_once __DIR__ . '/../src/Client.php';
$global = new Client('127.0.0.1:2207');
$i = $j = 10000;
$t = microtime(true);
while($i--)
{
$global->a = array(1,3);
}
echo ceil($j/(microtime(true)-$t))."qps\n";