Home php教程 php手册 PHP memcache实现消息队列实例

PHP memcache实现消息队列实例

Jun 06, 2016 pm 07:53 PM
memcache php Example accomplish information Enter queue

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 现在memcache在服务器缓存应用比较广泛,下面我来介绍memcache实现消息队列等待的一个例子,有需要了解的朋友可参考。 memche消息队列的原理就是在key上做文章,用以做一个连续的数字加上前缀记录序

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  现在memcache在服务器缓存应用比较广泛,下面我来介绍memcache实现消息队列等待的一个例子,有需要了解的朋友可参考。

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

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

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

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

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

  php中也可以使用memcache/memcached来实现消息队列。

  ?

  /**

  * Memcache 消息队列类

  */

  class QMC {

  const PREFIX = 'ASDFASDFFWQKE';

  /**

  * 初始化mc

  * @staticvar string $mc

  * @return Memcache

  */

  static private function mc_init() {

  static $mc = null;

  if (is_null($mc)) {

  $mc = new Memcache;

  $mc->connect('127.0.0.1', 11211);

  }

  return $mc;

  }

  /**

  * mc 计数器,增加计数并返回新的计数

  * @param string $key   计数器

  * @param int $offset   计数增量,可为负数。0为不改变计数

  * @param int $time     时间

  * @return int/false    失败是返回false,成功时返回更新计数器后的计数

  */

  static public function set_counter( $key, $offset, $time=0 ){

  $mc = self::mc_init();

  $val = $mc->get($key);

  if( !is_numeric($val) || $val

  $ret = $mc->set( $key, 0, $time );

  if( !$ret ) return false;

  $val = 0;

  }

  $offset = intval( $offset );

  if( $offset > 0 ){

  return $mc->increment( $key, $offset );

  }elseif( $offset

  return $mc->decrement( $key, -$offset );

  }

  return $val;

  }

  /**

  * 写入队列

  * @param string $key

  * @param mixed $value

  * @return bool

  */

  static public function input( $key, $value ){

  $mc = self::mc_init();

  $w_key = self::PREFIX.$key.'W';

  $v_key = self::PREFIX.$key.self::set_counter($w_key, 1);

  return $mc->set( $v_key, $value );

  }

  /**

  * 读取队列里的数据

  * @param string $key

  * @param int $max  最多读取条数

  * @return array

  */

  static public function output( $key, $max=100 ){

  $out = array();

  $mc = self::mc_init();

  $r_key = self::PREFIX.$key.'R';

  $w_key = self::PREFIX.$key.'W';

  $r_p   = self::set_counter( $r_key, 0 );//读指针

  $w_p   = self::set_counter( $w_key, 0 );//写指针

  if( $r_p == 0 ) $r_p = 1;

  while( $w_p >= $r_p ){

  if( --$max

  $v_key = self::PREFIX.$key.$r_p;

  $r_p = self::set_counter( $r_key, 1 );

  $out[] = $mc->get( $v_key );

  $mc->delete($v_key);

  }

  return $out;

  }

  }

  /**

  使用方法:

  QMC::input($key, $value );//写入队列

  $list = QMC::output($key);//读取队列

  */

  ?>

  基于PHP共享内存实现的消息队列:

  

  /**

  * 使用共享内存的PHP循环内存队列实现

  * 支持多进程, 支持各种数据类型的存储

  * 注: 完成入队或出队操作,尽快使用unset(), 以释放临界区

  *

  * @author wangbinandi@gmail.com

  * @created 2009-12-23

  */

  class ShmQueue

  {

  private $maxQSize = 0; // 队列最大长度

  private $front = 0; // 队头指针

  private $rear = 0;  // 队尾指针

  private $blockSize = 256;  // 块的大小(byte)

  private $memSize = 25600;  // 最大共享内存(byte)

  private $shmId = 0;

  private $filePtr = './shmq.ptr';

  private $semId = 0;

  public function __construct()

  {

  $shmkey = ftok(__FILE__, 't');

  $this->shmId = shmop_open($shmkey, "c", 0644, $this->memSize );

  $this->maxQSize = $this->memSize / $this->blockSize;

  // 申?一个信号量

  $this->semId = sem_get($shmkey, 1);

  sem_acquire($this->semId); // 申请进入临界区

  $this->init();

  }

[1] [2] [3] 

PHP memcache实现消息队列实例

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles