-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathWriteBench.php
58 lines (49 loc) · 1.53 KB
/
WriteBench.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
* This file is part of PHPinnacle/Cassis.
*
* (c) PHPinnacle Team <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types = 1);
namespace PHPinnacle\Cassis\Benchmarks;
use PHPinnacle\Cassis\Value\UserDefined;
use Ramsey\Uuid\Uuid;
class WriteBench extends CassisBench
{
/**
* @WarmUp(1)
* @Revs(10)
* @Iterations(5)
*
* @return void
* @throws \Throwable
*/
public function benchWrite(): void
{
$this->wait(function () {
$count = 100;
$promises = [];
for ($i = 1; $i <= $count; $i++) {
$author = new UserDefined([
'id' => $i,
'name' => "User $i",
'enabled' => (bool) ($i % 2),
]);
$arguments = [
'author' => $author,
'post_id' => Uuid::uuid1(),
'text' => $this->randomString(500),
'date' => $this->randomDate(),
'tags' => $this->randomTags(\rand(1, 10), 5),
];
$fields = \implode(',', \array_keys($arguments));
$values = \implode(',', \array_fill(0, \count($arguments), '?'));
$promises[] = $this->session->query("INSERT INTO posts_by_user ($fields) VALUES ($values)", $arguments);
}
yield $promises;
});
}
}