blob: f90dda6f2c5cf5bdcb04e3370642d582ebb212c2 (
plain)
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
|
<?php
/**
* @var Goridge\RelayInterface $relay
*/
use Spiral\Goridge;
use Spiral\RoadRunner;
require dirname(__DIR__) . "/../vendor/autoload.php";
$relay = new Goridge\SocketRelay(
"unix.sock",
null,
Goridge\SocketRelay::SOCK_UNIX
);
$rr = new RoadRunner\Worker($relay);
while ($in = $rr->waitPayload()) {
try {
$rr->respond(new RoadRunner\Payload((string)$in->body));
} catch (\Throwable $e) {
$rr->error((string)$e);
}
}
|