slowprog/messenger-beanstalkd
最新稳定版本:1.0.3
Composer 安装命令:
composer require slowprog/messenger-beanstalkd
包简介
Beanstalkd transport for Symfony's Messenger component.
README 文档
README
Beanstalkd transport for Symfony's Messenger component.
Installation
The component requires PHP 7.3+ and Symfony 4.3+. You can install this component using composer:
composer require slowprog/messenger-beanstalkd
Basic usage
Add the bundle to ./config/bundles.php:
return [
// ...
SlowProg\Beanstalkd\BeanstalkdTransportBundle::class => ['all' => true],
];
Set environment variable:
MESSENGER_TRANSPORT_DSN=beanstalkd://<beanstalkd_host>:<beanstalkd_port>
Set messenger transport config:
framework: messenger: transports: beanstalkd_queues: dsn: '%env(MESSENGER_TRANSPORT_DSN)%' options: queue_name: '%your_tube_name%' reserve_timeout: '%reserve_timeout_in_seconds%' connect_timeout: '%connect_timeout_in_seconds%'
Default options:
- queue_name - default
- reserve_timeout - 1
- connect_timeout - 10
Further reading
统计信息
- 总下载量: 1.09k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-10-25