slowprog / messenger-beanstalkd
Beanstalkd transport for Symfony's Messenger component.
Installs: 433
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.3
- pda/pheanstalk: ^4.0
- symfony/config: ^4.3|^5.0
- symfony/dependency-injection: ^4.3|^5.0
- symfony/http-kernel: ^4.3|^5.0
- symfony/messenger: ^4.3|^5.0
Requires (Dev)
- phpunit/phpunit: ^9.0
- symfony/var-dumper: ^4.3|^5.0
This package is auto-updated.
Last update: 2024-10-08 06:22:32 UTC
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