-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbootstrap.php
30 lines (26 loc) · 993 Bytes
/
bootstrap.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
<?php
use Pimple\Container;
$options = [
'app_name' => 'Example',
'server' => [
'host' => getenv('QUEUE_HOST') ? : '127.0.0.1',
'port' => getenv('QUEUE_PORT') ? : 11300,
],
'tubes' => [
'Example1' => ['worker_num' => 1, 'class' => 'Codeages\\Plumber\\Example\\Example1Worker'],
'Example2' => ['worker_num' => 1, 'class' => 'Codeages\\Plumber\\Example\\Example2Worker'],
// 'ExampleForward' => [
// 'worker_num' => 1,
// 'class' => 'Codeages\Plumber\ForwardWorker',
// 'destination' => [
// 'host' => 'localhost', // 转发目的(host, port)队列,不能跟当前worker所监听的队列一样。
// 'port' => 11301,
// 'tubeName' => 'ExampleForward',
// ]
// ],
],
'log_path' => __DIR__ . '/tmp/plumber.log',
'pid_path' => __DIR__ . '/tmp/plumber.pid',
];
$container = new Container($options);
return $container;