濮阳杆衣贸易有限公司

主頁(yè) > 知識(shí)庫(kù) > PHP基于redis計(jì)數(shù)器類(lèi)定義與用法示例

PHP基于redis計(jì)數(shù)器類(lèi)定義與用法示例

熱門(mén)標(biāo)簽:電話(huà)機(jī)器人危險(xiǎn)嗎 專(zhuān)業(yè)電話(huà)機(jī)器人批發(fā)商 江蘇外呼電銷(xiāo)機(jī)器人報(bào)價(jià) 深圳外呼系統(tǒng)收費(fèi) 400電話(huà)申請(qǐng)方法收費(fèi) 離石地圖標(biāo)注 南寧高頻外呼回?fù)芟到y(tǒng)哪家好 400電話(huà)辦理福州市 長(zhǎng)沙crm外呼系統(tǒng)業(yè)務(wù)

本文實(shí)例講述了PHP基于redis計(jì)數(shù)器類(lèi)定義與用法。分享給大家供大家參考,具體如下:

Redis是一個(gè)開(kāi)源的使用ANSI C語(yǔ)言編寫(xiě)、支持網(wǎng)絡(luò)、可基于內(nèi)存亦可持久化的日志型、Key-Value數(shù)據(jù)庫(kù),并提供多種語(yǔ)言的API。

這里使用其incr(自增)get(獲取),delete(清除)方法來(lái)實(shí)現(xiàn)計(jì)數(shù)器類(lèi)。

1.Redis計(jì)數(shù)器類(lèi)代碼及演示實(shí)例

RedisCounter.class.php

?php
/**
 * PHP基于Redis計(jì)數(shù)器類(lèi)
 * Date:  2017-10-28
 * Author: fdipzone
 * Version: 1.0
 *
 * Descripton:
 * php基于Redis實(shí)現(xiàn)自增計(jì)數(shù),主要使用redis的incr方法,并發(fā)執(zhí)行時(shí)保證計(jì)數(shù)自增唯一。
 *
 * Func:
 * public incr  執(zhí)行自增計(jì)數(shù)并獲取自增后的數(shù)值
 * public get   獲取當(dāng)前計(jì)數(shù)
 * public reset  重置計(jì)數(shù)
 * private connect 創(chuàng)建redis連接
 */
class RedisCounter{ // class start
  private $_config;
  private $_redis;
  /**
   * 初始化
   * @param Array $config redis連接設(shè)定
   */
  public function __construct($config){
    $this->_config = $config;
    $this->_redis = $this->connect();
  }
  /**
   * 執(zhí)行自增計(jì)數(shù)并獲取自增后的數(shù)值
   * @param String $key 保存計(jì)數(shù)的鍵值
   * @param Int  $incr 自增數(shù)量,默認(rèn)為1
   * @return Int
   */
  public function incr($key, $incr=1){
    return intval($this->_redis->incr($key, $incr));
  }
  /**
   * 獲取當(dāng)前計(jì)數(shù)
   * @param String $key 保存計(jì)數(shù)的健值
   * @return Int
   */
  public function get($key){
    return intval($this->_redis->get($key));
  }
  /**
   * 重置計(jì)數(shù)
   * @param String $key 保存計(jì)數(shù)的健值
   * @return Int
   */
  public function reset($key){
    return $this->_redis->delete($key);
  }
  /**
   * 創(chuàng)建redis連接
   * @return Link
   */
  private function connect(){
    try{
      $redis = new Redis();
      $redis->connect($this->_config['host'],$this->_config['port'],$this->_config['timeout'],$this->_config['reserved'],$this->_config['retry_interval']);
      if(empty($this->_config['auth'])){
        $redis->auth($this->_config['auth']);
      }
      $redis->select($this->_config['index']);
    }catch(RedisException $e){
      throw new Exception($e->getMessage());
      return false;
    }
    return $redis;
  }
} // class end
?>

demo.php

?php
Require 'RedisCounter.class.php';
// redis連接設(shè)定
$config = array(
  'host' => 'localhost',
  'port' => 6379,
  'index' => 0,
  'auth' => '',
  'timeout' => 1,
  'reserved' => NULL,
  'retry_interval' => 100,
);
// 創(chuàng)建RedisCounter對(duì)象
$oRedisCounter = new RedisCounter($config);
// 定義保存計(jì)數(shù)的健值
$key = 'mycounter';
// 執(zhí)行自增計(jì)數(shù),獲取當(dāng)前計(jì)數(shù),重置計(jì)數(shù)
echo $oRedisCounter->get($key).PHP_EOL; // 0
echo $oRedisCounter->incr($key).PHP_EOL; // 1
echo $oRedisCounter->incr($key, 10).PHP_EOL; // 11
echo $oRedisCounter->reset($key).PHP_EOL; // 1
echo $oRedisCounter->get($key).PHP_EOL; // 0
?>

輸出:

0
1
11
1
0

2.并發(fā)調(diào)用計(jì)數(shù)器,檢查計(jì)數(shù)唯一性

測(cè)試代碼如下:

?php
Require 'RedisCounter.class.php';
// redis連接設(shè)定
$config = array(
  'host' => 'localhost',
  'port' => 6379,
  'index' => 0,
  'auth' => '',
  'timeout' => 1,
  'reserved' => NULL,
  'retry_interval' => 100,
);
// 創(chuàng)建RedisCounter對(duì)象
$oRedisCounter = new RedisCounter($config);
// 定義保存計(jì)數(shù)的健值
$key = 'mytestcounter';
// 執(zhí)行自增計(jì)數(shù)并返回自增后的計(jì)數(shù),記錄入臨時(shí)文件
file_put_contents('/tmp/mytest_result.log', $oRedisCounter->incr($key).PHP_EOL, FILE_APPEND);
?>

測(cè)試并發(fā)執(zhí)行,我們使用ab工具進(jìn)行測(cè)試,設(shè)置執(zhí)行150次,15個(gè)并發(fā)。

ab -c 15 -n 150 http://localhost/test.php

執(zhí)行結(jié)果:

ab -c 15 -n 150 http://localhost/test.php
This is ApacheBench, Version 2.3 $Revision: 1554214 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking home.rabbit.km.com (be patient).....done
Server Software:    nginx/1.6.3
Server Hostname:    localhost
Server Port:      80
Document Path:     /test.php
Document Length:    0 bytes
Concurrency Level:   15
Time taken for tests:  0.173 seconds
Complete requests:   150
Failed requests:    0
Total transferred:   24150 bytes
HTML transferred:    0 bytes
Requests per second:  864.86 [#/sec] (mean)
Time per request:    17.344 [ms] (mean)
Time per request:    1.156 [ms] (mean, across all concurrent requests)
Transfer rate:     135.98 [Kbytes/sec] received
Connection Times (ms)
       min mean[+/-sd] median  max
Connect:    0  0  0.2   0    1
Processing:   3  16  3.2   16   23
Waiting:    3  16  3.2   16   23
Total:     4  16  3.1   17   23
Percentage of the requests served within a certain time (ms)
 50%   17
 66%   18
 75%   18
 80%   19
 90%   20
 95%   21
 98%   22
 99%   22
 100%   23 (longest request)

檢查計(jì)數(shù)是否唯一

生成的總計(jì)數(shù)

wc -l /tmp/mytest_result.log
   150 /tmp/mytest_result.log

生成的唯一計(jì)數(shù)

sort -u /tmp/mytest_result.log | wc -l
   150

可以看到在并發(fā)調(diào)用的情況下,生成的計(jì)數(shù)也保證唯一。

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《php+redis數(shù)據(jù)庫(kù)程序設(shè)計(jì)技巧總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門(mén)教程》、《PHP基本語(yǔ)法入門(mén)教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門(mén)教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • Redis的使用模式之計(jì)數(shù)器模式實(shí)例
  • Redis實(shí)現(xiàn)唯一計(jì)數(shù)的3種方法分享
  • redis實(shí)現(xiàn)計(jì)數(shù)器-防止刷單方法介紹
  • Redis實(shí)現(xiàn)高并發(fā)計(jì)數(shù)器
  • Spring之借助Redis設(shè)計(jì)一個(gè)簡(jiǎn)單訪(fǎng)問(wèn)計(jì)數(shù)器的示例
  • Docker 部署 SpringBoot 項(xiàng)目整合 Redis 鏡像做訪(fǎng)問(wèn)計(jì)數(shù)示例代碼
  • redis通過(guò)位圖法記錄在線(xiàn)用戶(hù)的狀態(tài)詳解
  • Redis精確去重計(jì)數(shù)方法(咆哮位圖)

標(biāo)簽:太原 株洲 濱州 興安盟 南昌 南京 白酒營(yíng)銷(xiāo) 曲靖

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP基于redis計(jì)數(shù)器類(lèi)定義與用法示例》,本文關(guān)鍵詞  PHP,基于,redis,計(jì)數(shù)器,類(lèi),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP基于redis計(jì)數(shù)器類(lèi)定義與用法示例》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于PHP基于redis計(jì)數(shù)器類(lèi)定義與用法示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    东阿县| 宁明县| 望都县| 枞阳县| 苍南县| 齐河县| 资溪县| 神池县| 社会| 共和县| 宁化县| 体育| 贵溪市| 嘉荫县| 芦溪县| 肇源县| 江孜县| 商河县| 罗江县| 饶河县| 河源市| 陆河县| 民乐县| 岐山县| 黄骅市| 安新县| 图们市| 砀山县| 南宫市| 娄烦县| 关岭| 瓮安县| 隆回县| 监利县| 凉山| 凤翔县| 靖安县| 青河县| 乌拉特后旗| 徐汇区| 南平市|