当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP memcache实现消息队列实例

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-27 16:15:38 浏览: 评论:0 

memche消息队列的原理就是在key上做文章,用以做一个连续的数字加上前缀记录序列化以后消息或者日志,然后通过定时程序将内容落地到文件或者数据库.

php实现消息队列的用处比如在做发送邮件时发送大量邮件很费时间的问题,那么可以采取队列.

方便实现队列的轻量级队列服务器是:

starling支持memcache协议的轻量级持久化服务器

https://github.com/starling/starling

Beanstalkd轻量、高效,支持持久化,每秒可处理3000左右的队列

http://kr.github.com/beanstalkd/

php中也可以使用memcache/memcached来实现消息队列,代码如下:

  1. <?php 
  2. /** 
  3. * Memcache 消息队列类 
  4. */ 
  5.  
  6. class QMC { 
  7. const PREFIX = 'ASDFASDFFWQKE'
  8.  
  9. /** 
  10. * 初始化mc 
  11. * @staticvar string $mc 
  12. * @return Memcache 
  13. */ 
  14. static private function mc_init() { 
  15. static $mc = null; 
  16. if (is_null($mc)) { 
  17. $mc = new Memcache; 
  18. $mc->connect('127.0.0.1', 11211); 
  19. return $mc
  20. /** 
  21. * mc 计数器,增加计数并返回新的计数 
  22. * @param string $key   计数器 
  23. * @param int $offset   计数增量,可为负数.0为不改变计数 
  24. * @param int $time     时间 
  25. * @return int/false    失败是返回false,成功时返回更新计数器后的计数 
  26. */ 
  27. static public function set_counter( $key$offset$time=0 ){ 
  28. $mc = self::mc_init(); 
  29. $val = $mc->get($key); 
  30. if( !is_numeric($val) || $val < 0 ){ 
  31. $ret = $mc->set( $key, 0, $time ); 
  32. if( !$ret ) return false; 
  33. $val = 0; 
  34. $offset = intval$offset ); 
  35. if$offset > 0 ){ 
  36. return $mc->increment( $key$offset ); 
  37. }elseif$offset < 0 ){ 
  38. return $mc->decrement( $key, -$offset ); 
  39. return $val
  40.  
  41. /** 
  42. * 写入队列 
  43. * @param string $key 
  44. * @param mixed $value 
  45. * @return bool 
  46. */ 
  47. static public function input( $key$value ){ 
  48. $mc = self::mc_init(); 
  49. $w_key = self::PREFIX.$key.'W'
  50. $v_key = self::PREFIX.$key.self::set_counter($w_key, 1); 
  51. return $mc->set( $v_key$value ); 
  52. /** 
  53. * 读取队列里的数据 
  54. * @param string $key 
  55. * @param int $max  最多读取条数 
  56. * @return array 
  57. */ 
  58. static public function output( $key$max=100 ){ 
  59. $out = array(); 
  60. $mc = self::mc_init(); 
  61. $r_key = self::PREFIX.$key.'R'
  62. $w_key = self::PREFIX.$key.'W'
  63. $r_p   = self::set_counter( $r_key, 0 );//读指针 
  64. $w_p   = self::set_counter( $w_key, 0 );//写指针 
  65. if$r_p == 0 ) $r_p = 1; 
  66. while$w_p >= $r_p ){ 
  67. if( --$max < 0 ) break
  68. $v_key = self::PREFIX.$key.$r_p
  69. $r_p = self::set_counter( $r_key, 1 ); 
  70. $out[] = $mc->get( $v_key ); 
  71. $mc->delete($v_key); 
  72. }//开源代码phpfensi.com 
  73. return $out
  74. /** 
  75. 使用方法: 
  76. QMC::input($key, $value );//写入队列 
  77. $list = QMC::output($key);//读取队列 
  78. */ 
  79. ?> 

基于PHP共享内存实现的消息队列,代码如下:

  1. <?php 
  2. /** 
  3. * 使用共享内存的PHP循环内存队列实现 
  4. * 支持多进程, 支持各种数据类型的存储 
  5. * 注: 完成入队或出队操作,尽快使用unset(), 以释放临界区 
  6. * 
  7. * @author wangbinandi@gmail.com 
  8. * @created 2009-12-23 
  9. */ 
  10. class ShmQueue 
  11. private $maxQSize = 0; // 队列最大长度 
  12.  
  13. private $front = 0; // 队头指针 
  14. private $rear = 0;  // 队尾指针 
  15.  
  16. private $blockSize = 256;  // 块的大小(byte) 
  17. private $memSize = 25600;  // 最大共享内存(byte) 
  18. private $shmId = 0; 
  19.  
  20. private $filePtr = './shmq.ptr'
  21.  
  22. private $semId = 0; 
  23. public function __construct() 
  24. $shmkey = ftok(__FILE__'t'); 
  25.  
  26. $this->shmId = shmop_open($shmkey"c", 0644, $this->memSize ); 
  27. $this->maxQSize = $this->memSize / $this->blockSize; 
  28.  
  29. //一个信号量 
  30. $this->semId = sem_get($shmkey, 1); 
  31. sem_acquire($this->semId); // 申请进入临界区 
  32.  
  33. $this->init(); 
  34.  
  35. private function init() 
  36. if ( file_exists($this->filePtr) ){ 
  37. $contents = file_get_contents($this->filePtr); 
  38. $data = explode'|'$contents ); 
  39. if ( isset($data[0]) && isset($data[1])){ 
  40. $this->front = (int)$data[0]; 
  41. $this->rear  = (int)$data[1]; 
  42.  
  43. public function getLength() 
  44. return (($this->rear - $this->front + $this->memSize) % ($this->memSize) )/$this->blockSize; 
  45.  
  46. public function enQueue( $value ) 
  47. if ( $this->ptrInc($this->rear) == $this->front ){ // 队满 
  48. return false; 
  49.  
  50. $data = $this->encode($value); 
  51. shmop_write($this->shmId, $data$this->rear ); 
  52. $this->rear = $this->ptrInc($this->rear); 
  53. return true; 
  54.  
  55. public function deQueue() 
  56. if ( $this->front == $this->rear ){ // 队空 
  57. return false; 
  58. $value = shmop_read($this->shmId, $this->front, $this->blockSize-1); 
  59. $this->front = $this->ptrInc($this->front); 
  60. return $this->decode($value); 
  61.  
  62. private function ptrInc( $ptr ) 
  63. return ($ptr + $this->blockSize) % ($this->memSize); 
  64.  
  65. private function encode( $value ) 
  66. $data = serialize($value) . "__eof"
  67. echo ''
  68.  
  69. echo strlen($data); 
  70. echo ''
  71.  
  72. echo $this->blockSize -1; 
  73. echo ''
  74.  
  75. if ( strlen($data) > $this->blockSize -1 ){ 
  76. throw new Exception(strlen($data)." is overload block size!"); 
  77. return $data
  78.  
  79. private function decode( $value ) 
  80. $data = explode("__eof"$value); 
  81. return unserialize($data[0]); 
  82.  
  83. public function __destruct() 
  84. $data = $this->front . '|' . $this->rear; 
  85. file_put_contents($this->filePtr, $data); 
  86.  
  87. sem_release($this->semId); // 出临界区, 释放信号量 
  88.  
  89. /* 
  90. // 进队操作 
  91. $shmq = new ShmQueue(); 
  92. $data = 'test data'; 
  93. $shmq->enQueue($data); 
  94. unset($shmq); 
  95. // 出队操作 
  96. $shmq = new ShmQueue(); 
  97. $data = $shmq->deQueue(); 
  98. unset($shmq); 
  99. */ 
  100. ?> 

对于一个很大的消息队列,频繁进行进行大数据库的序列化 和 反序列化,有太耗费。下面是我用PHP 实现的一个消息队列,只需要在尾部插入一个数据,就操作尾部,不用操作整个消息队列进行读取,与操作。但是,这个消息队列不是线程安全的,我只是尽量的避免了冲突的可能性。如果消息不是非常的密集,比如几秒钟才一个,还是可以考虑这样使用的。 

如果你要实现线程安全的,一个建议是通过文件进行锁定,然后进行操作,下面是代码:

  1. class Memcache_Queue  
  2. {  
  3. private $memcache;  
  4. private $name;  
  5. private $prefix;  
  6. function __construct($maxSize$name$memcache$prefix = "__memcache_queue__")  
  7. {  
  8. if ($memcache == null) {  
  9. throw new Exception("memcache object is null, new the object first.");  
  10. }  
  11. $this->memcache = $memcache;  
  12. $this->name = $name;  
  13. $this->prefix = $prefix;  
  14. $this->maxSize = $maxSize;  
  15. $this->front = 0;  
  16. $this->real = 0;  
  17. $this->size = 0;  
  18. }  
  19. function __get($name)  
  20. {  
  21. return $this->get($name);  
  22. }  
  23. function __set($name$value)  
  24. {  
  25. $this->add($name$value);  
  26. return $this;  
  27. }  
  28. function isEmpty()  
  29. {  
  30. return $this->size == 0;  
  31. }  
  32. function isFull()  
  33. {  
  34. return $this->size == $this->maxSize;  
  35. }  
  36. function enQueue($data)  
  37. {  
  38. if ($this->isFull()) {  
  39. throw new Exception("Queue is Full");  
  40. }  
  41. $this->increment("size");  
  42. $this->set($this->real, $data);  
  43. $this->set("real", ($this->real + 1) % $this->maxSize);  
  44. return $this;  
  45. }  
  46. function deQueue()  
  47. {  
  48. if ($this->isEmpty()) {  
  49. throw new Exception("Queue is Empty");  
  50. }  
  51. $this->decrement("size");  
  52. $this->delete($this->front);  
  53. $this->set("front", ($this->front + 1) % $this->maxSize);  
  54. return $this;  
  55. }  
  56. function getTop()  
  57. {  
  58. return $this->get($this->front);  
  59. }  
  60. function getAll()  
  61. {  
  62. return $this->getPage();  
  63. }  
  64. function getPage($offset = 0, $limit = 0)  
  65. {  
  66. if ($this->isEmpty() || $this->size < $offset) {  
  67. return null;  
  68. }  
  69. $keys[] = $this->getKeyByPos(($this->front + $offset) % $this->maxSize);  
  70. $num = 1;  
  71. for ($pos = ($this->front + $offset + 1) % $this->maxSize; $pos != $this->real; $pos = ($pos + 1) % $this->maxSize)  
  72. {  
  73. $keys[] = $this->getKeyByPos($pos);  
  74. $num++;  
  75. if ($limit > 0 && $limit == $num) {  
  76. break;  
  77. }  
  78. }  
  79. return array_values($this->memcache->get($keys));  
  80. }  
  81. function makeEmpty()  
  82. {  
  83. $keys = $this->getAllKeys();  
  84. foreach ($keys as $value) {  
  85. $this->delete($value);  
  86. }  
  87. $this->delete("real");  
  88. $this->delete("front");  
  89. $this->delete("size");  
  90. $this->delete("maxSize");  
  91. }  
  92. private function getAllKeys()  
  93. {  
  94. if ($this->isEmpty())  
  95. {  
  96. return array();  
  97. }  
  98. $keys[] = $this->getKeyByPos($this->front);  
  99. for ($pos = ($this->front + 1) % $this->maxSize; $pos != $this->real; $pos = ($pos + 1) % $this->maxSize)  
  100. {  
  101. $keys[] = $this->getKeyByPos($pos);  
  102. }  
  103. return $keys;  
  104. }  
  105. private function add($pos$data)  
  106. {  
  107. $this->memcache->add($this->getKeyByPos($pos), $data);  
  108. return $this;  
  109. }  
  110. private function increment($pos)  
  111. {  
  112. return $this->memcache->increment($this->getKeyByPos($pos));  
  113. }  
  114. private function decrement($pos)  
  115. {  
  116. $this->memcache->decrement($this->getKeyByPos($pos));  
  117. }  
  118. private function set($pos$data)  
  119. {  
  120. $this->memcache->set($this->getKeyByPos($pos), $data);  
  121. return $this;  
  122. }  
  123. private function get($pos)  
  124. {  
  125. return $this->memcache->get($this->getKeyByPos($pos));  
  126. }  
  127. private function delete($pos)  
  128. {  
  129. return $this->memcache->delete($this->getKeyByPos($pos));  
  130. }  
  131. private function getKeyByPos($pos)  
  132. {  
  133. return $this->prefix . $this->name . $pos;  
  134. }  

Tags: memcache PHP消息队列

分享到: