KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
MadzMQ
★ 8
Open GitHub ↗
MadzMQ = ZeroMQ & czmq & php-zmq
Download README (.md)
Explore Similar Repositories
Famework
:
Famework is a simple to use PHP Framwork to easily create splendid but lightweight web applications.
15619_CloudComputing
:
15619 Cloud Computing, Twitter Data Analysis Web Service
sinavideo_playersdk_global
:
No description available.
libTKM
:
İstanbul trafik verilerini çekmek için bir yazılım kütüphanesi
GParticlesIO
:
Simple IO transfer particles cache in DCC application
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
MadzMQ
?
Download (.md)
# MadzMQ **MadzMQ**是基于**libzmq** + **czmq**实现的高性能,高可用的消息队列 ##架构设计 ``` *--------------------* | madclient | +--------------------+ | DEALER | '--------------------' | | [1] | | v .--------------------. | ROUTER | +--------------------+ | madqueue[4] | |--------------------| | madbroker | +-----+--------------+ | PUB | ROUTER | | '-----+----+----+----+ | ^ | | | | [2] [3] | | | | v | .-----+----+----+----. | SUB | DEALER | | +--------------------+ | madserver | *--------------------* ``` - [1].madclient通过ZMQ_DEALER模式异步给madbroker发送消息,madbroker通过ZMQ_ROUTER模式异步接收消息 - [2].madbroker担当消息发布者,通过ZMQ_PUB模式发布消息;madserver作为消息订阅者,通过ZMQ_SUB模式订阅消息 - [3].madserver通过ZMQ_DEALER模式异步发消息给madbroker,从madbroker中获取当前消息的快照 ## Requirement - ZeroMQ 4.1.x stable - czmq 3.x.x stable - php-zmq 1.1.2 ## Install ```sh $ make ``` ## Bindings #### php madclient 基于php实现的客户端驱动,[代码实现](<https://github.com/rryqszq4/yaf-lib/blob/master/src/controllers/Madclient.php>) madserver 基于php实现的消息队列订阅者,[代码实现](https://github.com/rryqszq4/yaf-lib/blob/master/src/controllers/Madserver.php) ```sh $ ./yaf-lib/bin/madserver ``` msg协议 基于php实现的简单消息协议,[代码实现](https://github.com/rryqszq4/yaf-lib/blob/master/src/library/Zmq/Msg.php) kvmsg协议 基于php实现的简单key-value消息协议,[代码实现](https://github.com/rryqszq4/yaf-lib/blob/master/src/library/Zmq/Kvmsg.php)