makinacorpus/message-broker
Composer 安装命令:
composer require makinacorpus/message-broker
包简介
Opiniated and simple message broker interface along with a few implementations
README 文档
README
Opiniated and simple message broker interface along with a PostgreSQL working and stable implementation.
This package alone may probably not useful for many, please consider using it
along the makinacorpus/corebus package, which add meaningful opiniated bus
logic around.
This implementation was extracted from makinacorpus/goat and is stable.
Setup
First of all, install this package:
composer install makinacorpus/message-broker
It is also recommended to chose an UUID implementation:
composer install ramsey/uuid
Or:
composer install symfony/uid
Our favorite remains ramsey/uuid.
Symfony
Start by installing the makinacorpus/goat-query-bundle Symfony bundle if you
with to use the PostgreSQL implementation:
composer install makinacorpus/goat-query-bundle
And configure it as documented.
Then register the bundle into your config/bundles.php file:
<?php return [ // ... Your other bundles. MakinaCorpus\MessageBroker\Bridge\Symfony\MessageBrokerBundle::class => ['all' => true], ];
Important note: using Symfony and the goat-query implementation, the
message broker will default on the goat.runner.default default database
connection.
If you need to setup another connection, simply add into the
config/goat_query.yaml file:
parameters: # # Overrides the one from this bundle. # goat.runner.message_broker: alias: goat.runner.my_message_broker_connection goat_query: runner: # ... Your other connections, then: # # Your dedicated connection. # my_message_broker_connection: url: '%env(resolve:DATABASE_URL_MESSAGE_BROKER)%'
This library may evolve later to allow multiple message brokers to co-exist in container, one for each queue, case in which environment variables will become the primary place for configuring.
Another important note: using Symfony and the goat-query implementation,
message broker instance will always be registered with the queue named
default.
This will be configurable someday, it just isn't right now.
Standalone
This is not documented yet, but basically only thing you need to do is to
create an instance implementing MessageBroker.
PostgreSQL schema
If you are going to use the PostgreSQL implementation, please create the
necessary database tables in your default schema, please see the
src/Adapter/GoatQuery/message-broker.pg.sql file.
Usage
This is not documented yet.
Run tests
A docker environement with various containers for various PHP versions is
present in the sys/ folder. For tests to work in all PHP versions, you
need to run composer update --prefer-lowest in case of any failure.
composer install composer update --prefer-lowest cd sys/ ./docker-rebuild.sh # Run this only once ./docker-run.sh
Additionnaly generate coverage report:
./docker-coverage.sh
HTML coverage report will be generated in coverage folder.
makinacorpus/message-broker 适用场景与选型建议
makinacorpus/message-broker 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5.49k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 02 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「postgresql」 「message-broker」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 makinacorpus/message-broker 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 makinacorpus/message-broker 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 makinacorpus/message-broker 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
SilverStripe now has tentative support for PostgreSQL ('Postgres')
Dibi is Database Abstraction Library for PHP
The bundle for easy using json-rpc api on your project
Redis transport for Ecotone asynchronous messaging.
AWS SQS transport for Ecotone asynchronous messaging.
A laravel event broadcaster which broadcasts event into a fanout or topic RabbitMQ exchange.
统计信息
- 总下载量: 5.49k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 17
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2022-02-11