mhfereydouni/laravel-rabbitmq-communication
Composer 安装命令:
composer require mhfereydouni/laravel-rabbitmq-communication
包简介
integrate rabbitmq in a laravel application
README 文档
README
This package allows your laravel applications to easily communicate with each other in an event driven way.
One service can publish an event and another one can consume the event and take actions accordingly.
Installation
You can install the package via composer:
composer require mhfereydouni/laravel-rabbitmq-communication
Then you should publish the package config with running this command:
php artisan vendor:publish --tag="laravel-rabbitmq-communication-config"
This is the contents of the published config file:
<?php return [ 'host' => env('RABBITMQ_HOST', '127.0.0.1'), 'port' => env('RABBITMQ_PORT', 5672), 'user' => env('RABBITMQ_USER', 'guest'), 'password' => env('RABBITMQ_PASSWORD', 'guest'), 'vhost' => env('RABBITMQ_VHOST', '/'), 'event-consumers' => [ // [ // 'event' => '\App\Events\MyEvent', // 'routing_key' => 'my_routing_key', // if this event does not use routing key then remove this line // 'map_into' => '\App\Events\MapIntoEvent', // if you want to use the same event then remove this line // ], ], /** ----------------------------------------------- * options: 'sync', 'kind-sync', 'job' * sync: event are fired when they are consumed and error will stop the consumer * kind-sync: event are fired when they are consumed and error will not stop the consumer instead a log is stored * job: events are fired in a queue via laravel jobs (Note: you should make sure there is a queue worker for queue) */ 'event-consumer-mode' => 'sync', 'log-channel' => env('RABBITMQ_LOG_CHANNEL', env('LOG_CHANNEL', 'stack')), 'queue-name' => 'default', ];
Usage
Mark an event to be published on RabbitMQ
The only thing you must do is to make sure your event implements MHFereydouni\RabbitMQ\Support\ShouldPublish interface
and that's it.
All of the event's public properties will be published, and you can have access to them in your consumer. Make sure these properties are primitive or Arrayable.
If you want your event to be published using a routing key, then consider adding routingKey method to your event:
public function routingKey(): string { return 'routing_key'; }
declare exchanges in rabbitmq server
php artisan rabbitmq:declare-event-exchanges
When a laravel application wants to publish events, you must run this command to create appropriate exchanges on RabbitMQ (Exchanges will be created only for events specified in event service provider). For each event it will create an exchange with the name of event class. You can read more on exchanges types here.
The default type for exchanges will be 'fanout'. If you want to alter the type of exchange for an event you can add this property to your event:
private static string $exchangeType = 'topic';
Consume events from RabbitMQ
In the rabbitmq.php config file you should list all the events you want to consume.
'event-consumers' => [ // [ // 'event' => '\App\Events\MyEvent', // 'routing_key' => 'my_routing_key', // if this event does not use routing key then remove this line // 'map_into' => '\App\Events\MapIntoEvent', // if you want to use the same event then remove this line // ], ],
If you have same event in both services (publisher and consumer) then you can omit the map_into option for the event.
Then you can start consuming events with the following command:
php artisan rabbitmq:consume-events
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
mhfereydouni/laravel-rabbitmq-communication 适用场景与选型建议
mhfereydouni/laravel-rabbitmq-communication 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5k 次下载、GitHub Stars 达 9, 最近一次更新时间为 2023 年 05 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「rabbitmq」 「laravel」 「laravel rabbitmq」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mhfereydouni/laravel-rabbitmq-communication 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mhfereydouni/laravel-rabbitmq-communication 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mhfereydouni/laravel-rabbitmq-communication 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Work with RabbitMQ in Laravel.
Microservice RPC through message queues.
PHP AMQP Binding Library
Integrates php-amqplib with Symfony & RabbitMq. Formerly oldsound/rabbitmq-bundle.
Behat extention for RabbitMQ
Alfabank REST API integration
统计信息
- 总下载量: 5k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-05-15