shinomontaz / yii2-rabbit
yii2 rabbit 扩展
dev-master
2017-10-31 22:41 UTC
Requires (Dev)
- phpunit/phpunit: 6.*
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-09-22 14:45:44 UTC
README
配置示例
'components' => [ ... 'rabbit' => [ 'class' => 'shinomontaz\rabbit\Rabbit', 'host' => '<host>', 'port' => '<port>', 'user' => '<user>', 'password' => '<pass>', 'vhost' => '<vhost>', 'layout' => [ '<exchangeName1>' => [ 'type' => '<direct>', 'durable' => <durable>, 'queues' => [ '<queueName1>' => [ 'durable' => <durable>, 'type' => '<direct>', 'worker' => path\to\worker::class, ], ], ] ], ], ... ],
\Yii::$app->rabbit->schedule( $message, '<exchangeName>', 'routingKey');
php yii consoleController/process <queueName>