RabbitMQ PHP操作类,守护进程及相关测试数据
封装类如下:
<?php
/*
* amqp协议操作类,可以访问rabbitMQ
* 需先安装php_amqp扩展
*/
class RabbitMQCommand{ public $configs = array();
//交换机名称
public $exchange_name = '';
//队列名称
public $queue_name = '';
//路由名称
public $route_key = '';
/*
* 持久化,默认True
*/
public $durable = True;
/*
* 自动删除
* exchange is deleted when all queues have finished using it
* queue is deleted when last consumer unsubscribes
*
*/
public $autodelete = False;
/*
* 镜像
* 镜像队列,打开后消息会在节点之间复制,有master和slave的概念
*/
public $mirror = False; private $_conn = Null;
private $_exchange = Null;
private $_channel = Null;
private $_queue = Null; /*
* @configs array('host'=>$host,'port'=>5672,'username'=>$username,'password'=>$password,'vhost'=>'/')
*/ public function __construct($configs = array(), $exchange_name = '', $queue_name = '', $route_key = '') {
$this->setConfigs($configs);
$this->exchange_name = $exchange_name;
$this->queue_name = $queue_name;
$this->route_key = $route_key;
} private function setConfigs($configs) {
if (!is_array($configs)) {
throw new Exception('configs is not array');
}
if (!($configs['host'] && $configs['port'] && $configs['username'] && $configs['password'])) {
throw new Exception('configs is empty');
}
if (empty($configs['vhost'])) {
$configs['vhost'] = '/';
}
$configs['login'] = $configs['username'];
unset($configs['username']);
$this->configs = $configs;
} /*
* 设置是否持久化,默认为True
*/ public function setDurable($durable) {
$this->durable = $durable;
} /*
* 设置是否自动删除
*/ public function setAutoDelete($autodelete) {
$this->autodelete = $autodelete;
}
/*
* 设置是否镜像
*/
public function setMirror($mirror) {
$this->mirror = $mirror;
} /*
* 打开amqp连接
*/ private function open() {
if (!$this->_conn) {
try {
$this->_conn = new AMQPConnection($this->configs);
$this->_conn->connect();
$this->initConnection();
} catch (AMQPConnectionException $ex) {
throw new Exception('cannot connection rabbitmq',500);
}
}
} /*
* rabbitmq连接不变
* 重置交换机,队列,路由等配置
*/ public function reset($exchange_name, $queue_name, $route_key) {
$this->exchange_name = $exchange_name;
$this->queue_name = $queue_name;
$this->route_key = $route_key;
$this->initConnection();
} /*
* 初始化rabbit连接的相关配置
*/ private function initConnection() {
if (empty($this->exchange_name) || empty($this->queue_name) || empty($this->route_key)) {
throw new Exception('rabbitmq exchange_name or queue_name or route_key is empty',500);
}
$this->_channel = new AMQPChannel($this->_conn);
$this->_exchange = new AMQPExchange($this->_channel);
$this->_exchange->setName($this->exchange_name); $this->_exchange->setType(AMQP_EX_TYPE_DIRECT);
if ($this->durable)
$this->_exchange->setFlags(AMQP_DURABLE);
if ($this->autodelete)
$this->_exchange->setFlags(AMQP_AUTODELETE);
$this->_exchange->declare(); $this->_queue = new AMQPQueue($this->_channel);
$this->_queue->setName($this->queue_name);
if ($this->durable)
$this->_queue->setFlags(AMQP_DURABLE);
if ($this->autodelete)
$this->_queue->setFlags(AMQP_AUTODELETE);
if ($this->mirror)
$this->_queue->setArgument('x-ha-policy', 'all');
$this->_queue->declare(); $this->_queue->bind($this->exchange_name, $this->route_key);
} public function close() {
if ($this->_conn) {
$this->_conn->disconnect();
}
} public function __sleep() {
$this->close();
return array_keys(get_object_vars($this));
} public function __destruct() {
$this->close();
} /*
* 生产者发送消息
*/
public function send($msg) {
$this->open();
if(is_array($msg)){
$msg = json_encode($msg);
}else{
$msg = trim(strval($msg));
}
return $this->_exchange->publish($msg, $this->route_key);
}
/*
* 消费者
* $fun_name = array($classobj,$function) or function name string
* $autoack 是否自动应答
*
* function processMessage($envelope, $queue) {
$msg = $envelope->getBody();
echo $msg."\n"; //处理消息
$queue->ack($envelope->getDeliveryTag());//手动应答
}
*/
public function run($fun_name, $autoack = True){
$this->open();
if (!$fun_name || !$this->_queue) return False;
while(True){
if ($autoack) $this->_queue->consume($fun_name, AMQP_AUTOACK);
else $this->_queue->consume($fun_name);
}
} }
生产者代码:
<?php
set_time_limit(0);
include_once('RabbitMQCommand.php'); $configs = array('host'=>'192.168.0.156','port'=>5672,'username'=>'xp','password'=>'xp','vhost'=>'/');
$exchange_name = 'class-e-1';
$queue_name = 'class-q-1';
$route_key = 'class-r-1';
$ra = new RabbitMQCommand($configs,$exchange_name,$queue_name,$route_key);
for($i=0;$i<=10000000;$i++){
$ra->send(date('Y-m-d H:i:s',time()));
}
exit();
消费者代码:
<?php
error_reporting(0);
include_once('RabbitMQCommand.php'); $configs = array('host'=>'192.168.0.156','port'=>5672,'username'=>'xp','password'=>'xp','vhost'=>'/');
$exchange_name = 'class-e-1';
$queue_name = 'class-q-1';
$route_key = 'class-r-1';
$ra = new RabbitMQCommand($configs,$exchange_name,$queue_name,$route_key); class A{
function processMessage($envelope, $queue) {
$msg = $envelope->getBody();
$envelopeID = $envelope->getDeliveryTag();
$pid = posix_getpid();
file_put_contents("/app/bossadmin/log{$pid}.log", $msg.'|'.$envelopeID.''."\r\n",FILE_APPEND);
$queue->ack($envelopeID);
}
}
$a = new A(); $s = $ra->run(array($a,'processMessage'),false);
测试结果:
开了6个生产者,6个消费者,生产6000W条数据,执行了4个小时,消费者基本即时处理完毕


TOP:

总结:
RabbitMQ在PHP消费端请求连接后,如果有消息会主动轮询各个消费端,这让php作为守护进程的性能还可以。实际运行较长的时间,cpu内存等数据也都还可以。
而httpsqs需要消费端不断去请求httpsqs服务,守护进程的性能损耗就比较高。
RabbitMQ PHP操作类,守护进程及相关测试数据的更多相关文章
- linux 创建守护进程的相关知识
linux 创建守护进程的相关知识 http://www.114390.com/article/46410.htm linux 创建守护进程的相关知识,这篇文章主要介绍了linux 创建守护进程的相关 ...
- day36-进程操作实例,守护进程,方法,属性
#1.server端跟多个client端聊天: #异步操作,主进程负责接收client的连接,子进程负责跟client聊天. #每接收一个连接,就创建一个子进程,子进程之间的数据是隔离的,互不影响,所 ...
- Linux守护进程详解(init.d和xinetd) [转]
一 Linux守护进程 Linux 服务器在启动时需要启动很多系统服务,它们向本地和网络用户提供了Linux的系统功能接口,直接面向应用程序和用户.提供这些服务的程序是由运行在后台 的守护进程来执行的 ...
- Linux守护进程详解(init.d和xinetd)
一 Linux守护进程 Linux 服务器在启动时需要启动很多系统服务,它们向本地和网络用户提供了Linux的系统功能接口,直接面向应用程序和用户.提供这些服务的程序是由运行在后台的守护进程来执行的. ...
- linux守护进程编写实践
主要参考:http://colding.bokee.com/5277082.html (实例程序是参考这的) http://wbwk2005.blog.51cto.com/2215231/400260 ...
- 多进程编程之守护进程Daemonize
1.守护进程 守护进程(daemon)是一类在后台运行的特殊进程,用于执行特定的系统任务.很多守护进程在系统引导的时候启动,并且一直运行直到系统关闭.另一些只在需要的时候才启动,完成任务后就自动结束. ...
- Linux 守护进程和超级守护进程(xinetd)
一 .Linux守护进程 Linux 服务器在启动时需要启动很多系统服务,它们向本地和网络用户提供了Linux的系统功能接口,直接面向应用程序和用户.提供这些服务的程序是由运行在后台的守护进程来执行的 ...
- PHP7 网络编程(二)daemon守护进程
前言 在一个多任务的计算机操作系统中,守护进程(英语:daemon,/ˈdiːmən/或/ˈdeɪmən/)是一种在后台执行的计算机程序.此类程序会被以进程的形式初始化.守护进程程序的名称通常以字母“ ...
- php rabbitmq操作类及生产者和消费者实例代码 转
注意事项: 1.accept.php消费者代码需要在命令行执行 2.'username'=>'asdf','password'=>'123456' 改成自己的帐号和密码 RabbitMQC ...
随机推荐
- Objective-C中一种消息处理方法performSelector: withObject:
Objective-C中调用函数的方法是“消息传递”,这个和普通的函数调用的区别是,你可以随时对一个对象传递任何消息,而不需要在编译的时候声明这些方法.所以Objective-C可以在runtime的 ...
- 发送email给列表中的邮箱--python
#!/usr/bin/python # -*- coding: utf-8 -*- # from email.Header import Header from email.MIMEText impo ...
- Double 类型运算时的精度问题
double 类型运算时的 计算的精度不高,常常会出现0.999999999999999这种情况,那么就须要用BigDecimal 它是java提供的用来高精度计算的工具类 以下是对这个类的一个包 ...
- centos 6.3安装mono和monoDevelop过程
Mono官方网站:http://www.mono-project.com MonoDevelop官方网站:http://monodevelop.com/ 注:整个安装过程最好在同一个终端下完成! 1. ...
- 安卓开发中使用Genymotion模拟器
在安卓开发中,运行和调试自己所写的安卓程序需要用到模拟器 在一般情况下 是直接在这创建一个模拟器,但是这种自带的模拟器运行效率不佳,而且启动时间漫长 所以,我们可以换一款安卓模拟器 Genymotio ...
- linux 软连接方式实现上传文件存储目录的无缝迁移
背景: 由于前期的磁盘空间规划与后期的业务要求不符合.原先/home被用于用户上传文件的存储目录,但是由于上传文件的逐渐增多,而原来的/home目录的空间不足,需要给/home目录进行扩容.同时各个应 ...
- Bootstrap的竞争对手Zurb Foundation
Bootstrap并不是唯一的前端开发框架,比如还有JQuery UI.HTML5 Boilerplate等等.但对于Bootstrap来说,真正的竞争对手是Zurb Foundation.Boots ...
- JLabel跟label
- HTML5 PC、Mobile调用摄像头(navigator.getUserMedia)
废话少说,先贴上代码 html: <div id="main" class="masthead"> <div id="face_sc ...
- .net的 async 和 await
async 和 await 出现在C# 5.0之后,关系是两兄弟,Task是父辈,Thread是爷爷辈,这就是.net 多线程处理的东西,具体包括 创建线程,线程结果返回,线程中止,线程中的异常处理 ...