generated from chevere/package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sync-vs-async.php
66 lines (61 loc) · 1.42 KB
/
sync-vs-async.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
<?php
/*
* This file is part of Chevere.
*
* (c) Rodolfo Berrios <rodolfo@chevere.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
use Chevere\Demo\Actions\FetchUrl;
use function Chevere\Workflow\async;
use function Chevere\Workflow\run;
use function Chevere\Workflow\sync;
use function Chevere\Workflow\variable;
use function Chevere\Workflow\workflow;
require 'loader.php';
/*
php demo/sync-vs-async.php
*/
$sync = workflow(
php: sync(
new FetchUrl(),
url: variable('php'),
),
github: sync(
new FetchUrl(),
url: variable('github'),
),
chevere: sync(
new FetchUrl(),
url: variable('chevere'),
),
);
$async = workflow(
php: async(
new FetchUrl(),
url: variable('php'),
),
github: async(
new FetchUrl(),
url: variable('github'),
),
chevere: async(
new FetchUrl(),
url: variable('chevere'),
),
);
$variables = [
'php' => 'https://www.php.net',
'github' => 'https://github.com/chevere/workflow',
'chevere' => 'https://chevere.org',
];
$time = microtime(true);
$run = run($sync, ...$variables);
$time = microtime(true) - $time;
echo "Time sync: {$time}\n";
$time = microtime(true);
$run = run($async, ...$variables);
$time = microtime(true) - $time;
echo "Time async: {$time}\n";