Home Backend Development PHP Tutorial PHP memcache class sharing_PHP tutorial

PHP memcache class sharing_PHP tutorial

Jul 13, 2016 am 10:35 AM
memcache php main Instructions share article of kind queue

This article mainly introduces how to use PHP’s memcache class (memcache queue). Friends in need can refer to it

memcacheQueue.class.php The code is as follows: add('1asdf'); * $obj->getQueueLength(); * $obj->read(10); * $obj->get(8); ​*/ class memcacheQueue{ public static $client; //memcache client connection public $access; //Whether the queue can be updated private $expire; //Expiration time, seconds, 1~2592000, that is, within 30 days private $sleepTime; //Waiting time for unlocking, microseconds private $queueName; //Queue name, unique value private $retryNum; //Number of retries, = 10 * theoretical concurrency number public $currentHead; //Current team head value public $currentTail; //Current tail value ​ const MAXNUM = 20000; //Maximum number of queues, the recommended upper limit is 10K const HEAD_KEY = '_lkkQueueHead_'; //The first key of the queue const TAIL_KEY = '_lkkQueueTail_'; //queue tail key const VALU_KEY = '_lkkQueueValu_'; //queue value key const LOCK_KEY = '_lkkQueueLock_'; //Queue lock key ​ /*** Constructor * @param string $queueName Queue name * @param int $expire expiration time * @param array $config memcache configuration * * @return ​​*/ public function __construct($queueName ='',$expire=0,$config =''){ if(empty($config)){ Self::$client = memcache_pconnect('127.0.0.1',11211); }elseif(is_array($config)){//array('host'=>'127.0.0.1','port'=>'11211') self::$client = memcache_pconnect($config['host'],$config['port']); }elseif(is_string($config)){//"127.0.0.1:11211" $tmp = explode(':',$config); $conf['host'] = isset($tmp[0]) ? $tmp[0] : '127.0.0.1'; $conf['port'] = isset($tmp[1]) ? $tmp[1] : '11211'; Self::$client = memcache_pconnect($conf['host'],$conf['port']); } if(!self::$client) return false; ​ ignore_user_abort(true);//When the client disconnects, allow execution to continue set_time_limit(0);//Cancel the upper limit of script execution delay ​ $this->access = false; $this->sleepTime = 1000; $expire = empty($expire) ? 3600 : intval($expire)+1; $this->expire = $expire; $this->queueName = $queueName; $this->retryNum = 1000; ​ $this->head_key = $this->queueName . self::HEAD_KEY; $this->tail_key = $this->queueName . self::TAIL_KEY; $this->lock_key = $this->queueName . self::LOCK_KEY; ​ $this->_initSetHeadNTail(); } ​ /*** Initialize and set the head and tail values ​​of the queue ​​*/ private function _initSetHeadNTail(){ //The value at the head of the current queue $this->currentHead = memcache_get(self::$client, $this->head_key); if($this->currentHead === false) $this->currentHead =0; ​ //The value at the end of the current queue $this->currentTail = memcache_get(self::$client, $this->tail_key); if($this->currentTail === false) $this->currentTail =0; } ​ /*** When taking out an element, change the value at the head of the queue * @param int $step step value ​​*/ private function _changeHead($step=1){ $this->currentHead += $step; memcache_set(self::$client, $this->head_key,$this->currentHead,false,$this->expire); } ​ /*** When adding an element, change the value at the end of the queue * @param int $step step value * @param bool $reverse Whether to reverse * @return null ​​*/ private function _changeTail($step=1, $reverse =false){ if(!$reverse){ $this->currentTail += $step; }else{ $this->currentTail -= $step; } ​ memcache_set(self::$client, $this->tail_key,$this->currentTail,false,$this->expire); } ​ /*** Whether the queue is empty * @return bool ​​*/ private function _isEmpty(){ return (bool)($this->currentHead === $this->currentTail); }      /*** Is the queue full? * @return bool ​​*/  private function _isFull(){   $len = $this->currentTail - $this->currentHead;   return (bool)($len === self::MAXNUM);  }       /*** Queue locking ​​*/  private function _getLock(){   if($this->access === false){    while(!memcache_add(self::$client, $this->lock_key, 1, false, $this->expire) ){     usleep($this->sleepTime);     @$i++;     if($i > $this->retryNum){//尝试等待N次      return false;      break;     }    }      $this->_initSetHeadNTail();    return $this->access = true;   }     return $this->access;  }       /*** Queue unlocking ​​*/  private function _unLock(){   memcache_delete(self::$client, $this->lock_key, 0);   $this->access = false;  }       /*** Get the length of the current queue * This length is the theoretical length, some elements are lost due to expiration, the real length  

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/746591.htmlTechArticle这篇文章主要介绍了php的memcache类的使用方法(memcache队列),需要的朋友可以参考下 memcacheQueue.class.php代码如下:?php/*** PHP memcache 队列类* @aut...
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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 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.

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 ?

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

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