0rpc/zerorpc-php
最新稳定版本:1.2.2
Composer 安装命令:
composer require 0rpc/zerorpc-php
包简介
A Standard ZeroRPC client.
README 文档
README
Quick start
- check dependences
$ composer install
- recommand installation for Mac
$ brew install zeromq --universal
$ brew install php56
$ brew install php56-msgpack
$ brew install php56-zmq
- Installing zerorpc on Ubuntu
$ sudo pecl install channel://pecl.php.net/msgpack-0.5.5
$ sudo apt-get install pkg-config
$ git clone git://github.com/mkoppanen/php-zmq.git
$ cd php-zmq && sudo phpize && ./configure
$ sudo make && make install
Note: Don't forget to add the extensions to your php.ini
extension=msgpack.so
extension=zmq.so
Timeout Setting
$timeoutis in milliseconds$client->setTimeout($timeout)is only work on sync callsChannel::dispatch($timeout)is only work on async calls
Example
Server:
Read official python server guide and start two simple time server.
$ zerorpc --server --bind tcp://*:1234 time
$ zerorpc --server --bind tcp://*:2345 time
Client:
$ php example/time.php
This will return:
Example 1: start sync call:
cost 5.0087389945984 s
Example 2: start async call:
cost 3.0069580078125 s
Know Issue
We assume most of the PHP usage scenario is webserver, so LostRemoteException is not implemented, and because of that heartbeat is disabled.
Credits
Origin main author of this repo is: @liangshan Other contributors: @wenzong, @thewinterwind
统计信息
- 总下载量: 14.63k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 15
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-08