定制 slowprog/messenger-beanstalkd 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-10-25