-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest-cycle.php
93 lines (83 loc) · 2.66 KB
/
test-cycle.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php declare(strict_types=1);
include 'init.php';
use App\Cycle\User;
use Cycle\Database;
use Cycle\Database\Config;
use Cycle\ORM;
/** --------------------------- SETUP START --------------------------- */
$dbal = new Database\DatabaseManager(
new Config\DatabaseConfig([
'default' => 'default',
'databases' => [
'default' => ['connection' => 'mysql']
],
'connections' => [
'mysql' => new Config\MySQLDriverConfig(
connection: new Config\MySQL\TcpConnectionConfig(
database: $_ENV['MYSQL_DB_NAME'],
host: $_ENV['MYSQL_HOST'],
port: $_ENV['MYSQL_HOST_PORT'],
user: $_ENV['MYSQL_USERNAME'],
password: $_ENV['MYSQL_PASSWORD'],
),
),
]
])
);
$schema = [
'user' => [
ORM\SchemaInterface::ENTITY => User::class,
ORM\SchemaInterface::DATABASE => 'default',
ORM\SchemaInterface::TABLE => 'Users',
ORM\SchemaInterface::PRIMARY_KEY => ['id'],
ORM\SchemaInterface::COLUMNS => ['id', 'name', 'age', 'microtime', 'created_at'],
ORM\SchemaInterface::TYPECAST => [
'id' => 'int',
'age' => 'int',
'microtime' => 'float',
'created_at' => 'datetime',
],
],
];
$orm = new ORM\ORM(
factory: new ORM\Factory($dbal),
schema: new ORM\Schema($schema),
);
$entityManager = new ORM\EntityManager($orm);
$repository = $orm->getRepository(User::class);
// Complete ORM configuration
$orm->prepareServices();
/** --------------------------- SETUP END --------------------------- */
$startTime = microtime(true);
$startMemory = memory_get_usage();
for ($i = 0; $i < $_ENV['REPEATS']; $i++) {
//Create
$newUser = new User(
name: uniqid(),
age: mt_rand(1, 100),
microtime: microtime(true),
);
$entityManager->persist($newUser);
$entityManager->run();
// Clean entity cache before next action
$orm->getHeap()->clean();
//Read
$foundUser = $repository->findByPK($newUser->getId());
//Update
$foundUser->setName($foundUser->getName() . '_changed');
$entityManager->persist($foundUser);
$entityManager->run();
//Delete
$entityManager->delete($foundUser);
$entityManager->run();
}
$time = microtime(true) - $startTime;
$memory = memory_get_usage() - $startMemory;
$memoryPeak = memory_get_peak_usage();
printf(
"CYCLE %d CRUD operations\nTime: %s seconds\nMemory: %s Kilobytes\nMemory Peak: %s Kilobytes\n",
$_ENV['REPEATS'],
round($time, 2),
round($memory / 1024, 2),
round($memoryPeak / 1024, 2),
);