sylius-labs/rabbitmq-simplebus-bundle
Composer 安装命令:
composer require sylius-labs/rabbitmq-simplebus-bundle
包简介
Integrates RabbitMQ with SimpleBus.
README 文档
README
Transforms AMQP messages received from RabbitMQ to event handled by SimpleBus.
Installation
- Require this package:
$ composer require sylius-labs/rabbitmq-simplebus-bundle
- Add bundle to
AppKernel.php:
public function registerBundles() { $bundles = [ new \SyliusLabs\RabbitMqSimpleBusBundle\RabbitMqSimpleBusBundle(), ]; return array_merge(parent::registerBundles(), $bundles); }
Usage
- Create your custom AMQP messages denormalizer:
// src/Acme/CustomDenormalizer.php namespace Acme; use PhpAmqpLib\Message\AMQPMessage; use SyliusLabs\RabbitMqSimpleBusBundle\Denormalizer\DenormalizationFailedException; use SyliusLabs\RabbitMqSimpleBusBundle\Denormalizer\DenormalizerInterface; class CustomDenormalizer implements DenormalizerInterface { public function supports(AMQPMessage $message) { return null !== json_decode($message->getBody(), true); } public function denormalize(AMQPMessage $message) { if (!$this->supports($message)) { throw new DenormalizationFailedException('Unsupported message!'); } return new CustomEvent(json_decode($message->getBody(), true)); } }
- Tag your denormalizer service with
rabbitmq_simplebus.amqp_denormalizer:
<!-- app/config/services.xml --> <?xml version="1.0" encoding="UTF-8"?> <container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> <services> <service id="acme.custom_denormalizer" class="Acme\CustomDenormalizer"> <tag name="rabbitmq_simplebus.amqp_denormalizer" /> </service> </services> </container>
# app/config/services.yml services: acme.custom_denormalizer: class: Acme\CustomDenormalizer tags: - { name: rabbitmq_simplebus.amqp_denormalizer }
# app/config/config.yml old_sound_rabbit_mq: connections: default: host: 'localhost' port: 5672 user: 'guest' password: 'guest' consumers: rabbitmq_simplebus: connection: default exchange_options: { name: 'rabbitmq-simplebus', type: direct } queue_options: { name: 'rabbitmq-simplebus' } callback: rabbitmq_simplebus.consumer
- Run RabbitMQ consumer:
$ bin/console rabbitmq:consumer rabbitmq_simplebus
sylius-labs/rabbitmq-simplebus-bundle 适用场景与选型建议
sylius-labs/rabbitmq-simplebus-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 50.85k 次下载、GitHub Stars 达 11, 最近一次更新时间为 2017 年 05 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 sylius-labs/rabbitmq-simplebus-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 sylius-labs/rabbitmq-simplebus-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 50.85k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 20
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-12