婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > CI框架(CodeIgniter)操作redis的方法詳解

CI框架(CodeIgniter)操作redis的方法詳解

熱門標簽:400電話辦理福州市 離石地圖標注 南寧高頻外呼回撥系統哪家好 江蘇外呼電銷機器人報價 深圳外呼系統收費 長沙crm外呼系統業務 電話機器人危險嗎 專業電話機器人批發商 400電話申請方法收費

本文實例講述了CI框架(CodeIgniter)操作redis的方法。分享給大家供大家參考,具體如下:

1. 在autoload.php 中加入 如下配置行

$autoload['libraries'] = array('redis');

2. 在/application/config 中加入文件 redis.php

文件內容如下:

?php
// Default connection group
$config['redis_default']['host'] = 'localhost';   // IP address or host
$config['redis_default']['port'] = '6379';     // Default Redis port is 6379
$config['redis_default']['password'] = '';     // Can be left empty when the server does not require AUTH
$config['redis_slave']['host'] = '';
$config['redis_slave']['port'] = '6379';
$config['redis_slave']['password'] = '';
?>

3. 在 /application/libraries 中加入文件 Redis.php

文件來源:redis庫文件包

文件內容:

?php defined('BASEPATH') OR exit('No direct script access allowed');
/**
 * CodeIgniter Redis
 *
 * A CodeIgniter library to interact with Redis
 *
 * @package     CodeIgniter
 * @category    Libraries
 * @author     Joël Cox
 * @version     v0.4
 * @link      https://github.com/joelcox/codeigniter-redis
 * @link      http://joelcox.nl
 * @license     http://www.opensource.org/licenses/mit-license.html
 */
class CI_Redis {
  /**
   * CI
   *
   * CodeIgniter instance
   * @var   object
   */
  private $_ci;
  /**
   * Connection
   *
   * Socket handle to the Redis server
   * @var   handle
   */
  private $_connection;
  /**
   * Debug
   *
   * Whether we're in debug mode
   * @var   bool
   */
  public $debug = FALSE;
  /**
   * CRLF
   *
   * User to delimiter arguments in the Redis unified request protocol
   * @var   string
   */
  const CRLF = "\r\n";
  /**
   * Constructor
   */
  public function __construct($params = array())
  {
    log_message('debug', 'Redis Class Initialized');
    $this->_ci = get_instance();
    $this->_ci->load->config('redis');
    // Check for the different styles of configs
    if (isset($params['connection_group']))
    {
      // Specific connection group
      $config = $this->_ci->config->item('redis_' . $params['connection_group']);
    }
    elseif (is_array($this->_ci->config->item('redis_default')))
    {
      // Default connection group
      $config = $this->_ci->config->item('redis_default');
    }
    else
    {
      // Original config style
      $config = array(
        'host' => $this->_ci->config->item('redis_host'),
        'port' => $this->_ci->config->item('redis_port'),
        'password' => $this->_ci->config->item('redis_password'),
      );
    }
    // Connect to Redis
    $this->_connection = @fsockopen($config['host'], $config['port'], $errno, $errstr, 3);
    // Display an error message if connection failed
    if ( ! $this->_connection)
    {
      show_error('Could not connect to Redis at ' . $config['host'] . ':' . $config['port']);
    }
    // Authenticate when needed
    $this->_auth($config['password']);
  }
  /**
   * Call
   *
   * Catches all undefined methods
   * @param  string method that was called
   * @param  mixed  arguments that were passed
   * @return mixed
   */
  public function __call($method, $arguments)
  {
    $request = $this->_encode_request($method, $arguments);
    return $this->_write_request($request);
  }
  /**
   * Command
   *
   * Generic command function, just like redis-cli
   * @param  string full command as a string
   * @return mixed
   */
  public function command($string)
  {
    $slices = explode(' ', $string);
    $request = $this->_encode_request($slices[0], array_slice($slices, 1));
    return $this->_write_request($request);
  }
  /**
   * Auth
   *
   * Runs the AUTH command when password is set
   * @param  string password for the Redis server
   * @return void
   */
  private function _auth($password = NULL)
  {
    // Authenticate when password is set
    if ( ! empty($password))
    {
      // See if we authenticated successfully
      if ($this->command('AUTH ' . $password) !== 'OK')
      {
        show_error('Could not connect to Redis, invalid password');
      }
    }
  }
  /**
   * Clear Socket
   *
   * Empty the socket buffer of theconnection so data does not bleed over
   * to the next message.
   * @return NULL
   */
  public function _clear_socket()
  {
    // Read one character at a time
    fflush($this->_connection);
    return NULL;
  }
  /**
   * Write request
   *
   * Write the formatted request to the socket
   * @param  string request to be written
   * @return mixed
   */
  private function _write_request($request)
  {
    if ($this->debug === TRUE)
    {
      log_message('debug', 'Redis unified request: ' . $request);
    }
    // How long is the data we are sending?
    $value_length = strlen($request);
    // If there isn't any data, just return
    if ($value_length = 0) return NULL;
    // Handle reply if data is less than or equal to 8192 bytes, just send it over
    if ($value_length = 8192)
    {
      fwrite($this->_connection, $request);
    }
    else
    {
      while ($value_length > 0)
      {
        // If we have more than 8192, only take what we can handle
        if ($value_length > 8192) {
          $send_size = 8192;
        }
        // Send our chunk
        fwrite($this->_connection, $request, $send_size);
        // How much is left to send?
        $value_length = $value_length - $send_size;
        // Remove data sent from outgoing data
        $request = substr($request, $send_size, $value_length);
      }
    }
    // Read our request into a variable
    $return = $this->_read_request();
    // Clear the socket so no data remains in the buffer
    $this->_clear_socket();
    return $return;
  }
  /**
   * Read request
   *
   * Route each response to the appropriate interpreter
   * @return mixed
   */
  private function _read_request()
  {
    $type = fgetc($this->_connection);
    // Times we will attempt to trash bad data in search of a
    // valid type indicator
    $response_types = array('+', '-', ':', '$', '*');
    $type_error_limit = 50;
    $try = 0;
    while ( ! in_array($type, $response_types)  $try  $type_error_limit)
    {
      $type = fgetc($this->_connection);
      $try++;
    }
    if ($this->debug === TRUE)
    {
      log_message('debug', 'Redis response type: ' . $type);
    }
    switch ($type)
    {
      case '+':
        return $this->_single_line_reply();
        break;
      case '-':
        return $this->_error_reply();
        break;
      case ':':
        return $this->_integer_reply();
        break;
      case '$':
        return $this->_bulk_reply();
        break;
      case '*':
        return $this->_multi_bulk_reply();
        break;
      default:
        return FALSE;
    }
  }
  /**
   * Single line reply
   *
   * Reads the reply before the EOF
   * @return mixed
   */
  private function _single_line_reply()
  {
    $value = rtrim(fgets($this->_connection));
    $this->_clear_socket();
    return $value;
  }
  /**
   * Error reply
   *
   * Write error to log and return false
   * @return bool
   */
  private function _error_reply()
  {
    // Extract the error message
    $error = substr(rtrim(fgets($this->_connection)), 4);
    log_message('error', 'Redis server returned an error: ' . $error);
    $this->_clear_socket();
    return FALSE;
  }
  /**
   * Integer reply
   *
   * Returns an integer reply
   * @return int
   */
  private function _integer_reply()
  {
    return (int) rtrim(fgets($this->_connection));
  }
  /**
   * Bulk reply
   *
   * Reads to amount of bits to be read and returns value within
   * the pointer and the ending delimiter
   * @return string
   */
  private function _bulk_reply()
  {
    // How long is the data we are reading? Support waiting for data to
    // fully return from redis and enter into socket.
    $value_length = (int) fgets($this->_connection);
    if ($value_length = 0) return NULL;
    $response = '';
    // Handle reply if data is less than or equal to 8192 bytes, just read it
    if ($value_length = 8192)
    {
      $response = fread($this->_connection, $value_length);
    }
    else
    {
      $data_left = $value_length;
        // If the data left is greater than 0, keep reading
        while ($data_left > 0 ) {
        // If we have more than 8192, only take what we can handle
        if ($data_left > 8192)
        {
          $read_size = 8192;
        }
        else
        {
          $read_size = $data_left;
        }
        // Read our chunk
        $chunk = fread($this->_connection, $read_size);
        // Support reading very long responses that don't come through
        // in one fread
        $chunk_length = strlen($chunk);
        while ($chunk_length  $read_size)
        {
          $keep_reading = $read_size - $chunk_length;
          $chunk .= fread($this->_connection, $keep_reading);
          $chunk_length = strlen($chunk);
        }
        $response .= $chunk;
        // Re-calculate how much data is left to read
        $data_left = $data_left - $read_size;
      }
    }
    // Clear the socket in case anything remains in there
    $this->_clear_socket();
  return isset($response) ? $response : FALSE;
  }
  /**
   * Multi bulk reply
   *
   * Reads n bulk replies and return them as an array
   * @return array
   */
  private function _multi_bulk_reply()
  {
    // Get the amount of values in the response
    $response = array();
    $total_values = (int) fgets($this->_connection);
    // Loop all values and add them to the response array
    for ($i = 0; $i  $total_values; $i++)
    {
      // Remove the new line and carriage return before reading
      // another bulk reply
      fgets($this->_connection, 2);
      // If this is a second or later pass, we also need to get rid
      // of the $ indicating a new bulk reply and its length.
      if ($i > 0)
      {
        fgets($this->_connection);
        fgets($this->_connection, 2);
      }
      $response[] = $this->_bulk_reply();
    }
    // Clear the socket
    $this->_clear_socket();
    return isset($response) ? $response : FALSE;
  }
  /**
   * Encode request
   *
   * Encode plain-text request to Redis protocol format
   * @link  http://redis.io/topics/protocol
   * @param  string request in plain-text
   * @param  string additional data (string or array, depending on the request)
   * @return string encoded according to Redis protocol
   */
  private function _encode_request($method, $arguments = array())
  {
    $request = '$' . strlen($method) . self::CRLF . $method . self::CRLF;
    $_args = 1;
    // Append all the arguments in the request string
    foreach ($arguments as $argument)
    {
      if (is_array($argument))
      {
        foreach ($argument as $key => $value)
        {
          // Prepend the key if we're dealing with a hash
          if (!is_int($key))
          {
            $request .= '$' . strlen($key) . self::CRLF . $key . self::CRLF;
            $_args++;
          }
          $request .= '$' . strlen($value) . self::CRLF . $value . self::CRLF;
          $_args++;
        }
      }
      else
      {
        $request .= '$' . strlen($argument) . self::CRLF . $argument . self::CRLF;
        $_args++;
      }
    }
    $request = '*' . $_args . self::CRLF . $request;
    return $request;
  }
  /**
   * Info
   *
   * Overrides the default Redis response, so we can return a nice array
   * of the server info instead of a nasty string.
   * @return array
   */
  public function info($section = FALSE)
  {
    if ($section !== FALSE)
    {
      $response = $this->command('INFO '. $section);
    }
    else
    {
      $response = $this->command('INFO');
    }
    $data = array();
    $lines = explode(self::CRLF, $response);
    // Extract the key and value
    foreach ($lines as $line)
    {
      $parts = explode(':', $line);
      if (isset($parts[1])) $data[$parts[0]] = $parts[1];
    }
    return $data;
  }
  /**
   * Debug
   *
   * Set debug mode
   * @param  bool  set the debug mode on or off
   * @return void
   */
  public function debug($bool)
  {
    $this->debug = (bool) $bool;
  }
  /**
   * Destructor
   *
   * Kill the connection
   * @return void
   */
  function __destruct()
  {
    if ($this->_connection) fclose($this->_connection);
  }
}
?>

4. 然后你就可以 在文件中這樣使用了

?php
  if($this->redis->get('mark_'.$gid) === null){ //如果未設置
    $this->redis->set('mark_'.$gid, $giftnum); //設置
    $this->redis->EXPIRE('mark_'.$gid, 30*60); //設置過期時間 (30 min)
  }else{
    $giftnum = $this->redis->get('mark_'.$gid); //從緩存中直接讀取對應的值
  }
?>

5. 重點是你所需要的 東東在這里很詳細的講解了

所有要用的函數只需要更改 $redis  ==> $this->redis

php中操作redis庫函數功能與用法可參考本站https://www.jb51.net/article/33887.htm

需要注意的是:

(1)你的本地需要安裝 redis服務(windows安裝)
(2)并開啟redis 服務
(3)不管是windows 還是linux 都需要裝 php對應版本的 redis擴展

更多關于CodeIgniter相關內容感興趣的讀者可查看本站專題:《codeigniter入門教程》、《CI(CodeIgniter)框架進階教程》、《php優秀開發框架總結》、《ThinkPHP入門教程》、《ThinkPHP常用方法總結》、《Zend FrameWork框架入門教程》、《php面向對象程序設計入門教程》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》

希望本文所述對大家基于CodeIgniter框架的PHP程序設計有所幫助。

您可能感興趣的文章:
  • Thinkphp 3.2框架使用Redis的方法詳解
  • thinkPHP框架通過Redis實現增刪改查操作的方法詳解
  • thinkphp5框架擴展redis類方法示例
  • Spring Boot單元測試中使用mockito框架mock掉整個RedisTemplate的示例
  • Laravel框架使用Redis的方法詳解
  • Python的Flask框架使用Redis做數據緩存的配置方法
  • PHP的Laravel框架結合MySQL與Redis數據庫的使用部署
  • Redis框架Jedis及Redisson對比解析

標簽:南昌 白酒營銷 濱州 太原 南京 興安盟 曲靖 株洲

巨人網絡通訊聲明:本文標題《CI框架(CodeIgniter)操作redis的方法詳解》,本文關鍵詞  框架,CodeIgniter,操作,redis,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《CI框架(CodeIgniter)操作redis的方法詳解》相關的同類信息!
  • 本頁收集關于CI框架(CodeIgniter)操作redis的方法詳解的相關信息資訊供網民參考!
  • 推薦文章
    婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
    最好看的中文字幕久久| 国产东北露脸精品视频| 亚洲黄色免费电影| 国产日韩亚洲欧美综合| 欧美电影免费观看高清完整版在 | 国内成人精品2018免费看| 成人午夜私人影院| 亚洲精品久久久久久国产精华液| 亚洲午夜一区二区三区| 亚洲午夜精品久久久久久久久| 亚洲美女视频在线观看| 亚洲精品乱码久久久久久| 亚洲人成7777| 日韩一级高清毛片| 欧美一区二区啪啪| 欧美一二三四区在线| 亚洲精品视频在线看| 久久蜜桃av一区二区天堂 | av电影在线观看一区| 一本一本久久a久久精品综合麻豆| 波多野结衣91| 一区二区激情小说| 一本色道久久综合亚洲精品按摩| 欧美精品久久99久久在免费线| 在线不卡a资源高清| 久久综合久久综合九色| 亚洲精品一二三| 国产一区二区在线影院| 色猫猫国产区一区二在线视频| 国产一级精品在线| 欧美日韩国产综合久久| 日本一区免费视频| 久久精品国产99| 欧美美女bb生活片| 欧美电影一区二区| 国产精品福利在线播放| 国产麻豆精品在线| 最新不卡av在线| 69p69国产精品| 亚洲免费视频中文字幕| 国产一区视频导航| 精品99一区二区三区| 亚洲一级片在线观看| 成人动漫在线一区| 一色屋精品亚洲香蕉网站| 国产伦精一区二区三区| 久久一区二区三区四区| 久久国产成人午夜av影院| 欧美婷婷六月丁香综合色| 亚洲国产成人午夜在线一区| 精品久久久久久久久久久久久久久| 欧美高清一级片在线| 中文字幕在线观看不卡视频| 激情五月播播久久久精品| 69久久99精品久久久久婷婷| 日本麻豆一区二区三区视频| 欧美一区二区福利视频| 国产精品一区二区久久不卡 | 欧美成人伊人久久综合网| 天天综合天天做天天综合| 免费在线一区观看| 国产精品区一区二区三区| 性做久久久久久| 日韩免费高清av| 欧美图区在线视频| 高清视频一区二区| 亚洲va欧美va人人爽午夜| 欧美成人一区二区三区在线观看| 亚洲成人一区二区| 国产iv一区二区三区| 性做久久久久久免费观看| 国产区在线观看成人精品| 欧美自拍偷拍一区| 色噜噜狠狠一区二区三区果冻| 中文无字幕一区二区三区| 欧美一级欧美三级| 欧美午夜一区二区三区免费大片| 国产精品国产馆在线真实露脸| 久久一区二区三区国产精品| 欧美这里有精品| 91免费国产视频网站| 99在线视频精品| 亚洲无线码一区二区三区| 在线观看亚洲成人| 不卡视频在线看| 精品国产成人在线影院| 成人av动漫网站| 美女网站一区二区| 亚洲欧洲一区二区在线播放| 国产欧美在线观看一区| 国产精品女主播av| 久久一区二区三区四区| 欧美色图第一页| 欧美日韩一区不卡| 国产中文字幕精品| 欧美男女性生活在线直播观看| 91亚洲精品一区二区乱码| 99vv1com这只有精品| 国产欧美日韩精品一区| 精品国产一区久久| 久久久久国产精品人| 国产精品久久久久久久岛一牛影视 | 色综合天天综合网天天狠天天| 成人avav影音| 在线日韩av片| 91精品中文字幕一区二区三区| 欧美一区午夜精品| 久久精品人人做人人爽人人| 国产精品理论片| 91视频精品在这里| www.视频一区| 日韩成人免费在线| 日韩和欧美的一区| 日韩欧美在线影院| 亚洲欧洲99久久| 麻豆国产精品一区二区三区| 91精品免费观看| 中文字幕制服丝袜成人av | 国产美女一区二区| av一区二区久久| 久久久综合九色合综国产精品| 亚洲欧洲成人精品av97| 色婷婷av一区二区三区之一色屋| 国产剧情一区二区| 国产综合色精品一区二区三区| 国产黄色精品视频| 国产日本欧洲亚洲| 成人免费精品视频| 国产精品久久免费看| 亚洲免费观看在线观看| 色婷婷亚洲一区二区三区| 亚洲美女免费视频| 色八戒一区二区三区| 亚洲综合自拍偷拍| 91美女福利视频| 一区二区三区国产| 6080日韩午夜伦伦午夜伦| 久久久久久久久99精品| kk眼镜猥琐国模调教系列一区二区| 久久久噜噜噜久久人人看 | 精品精品欲导航| 日韩影院在线观看| 国产精品一区二区果冻传媒| 久久一二三国产| 国产不卡免费视频| 欧美韩国日本一区| 色婷婷av一区二区| 久久精品亚洲麻豆av一区二区 | 国产激情一区二区三区桃花岛亚洲| 久草精品在线观看| 成人av综合在线| 天天综合色天天| 欧美日韩精品欧美日韩精品一| 中文字幕二三区不卡| av亚洲精华国产精华精华| 一区二区三国产精华液| 欧美一区二区三区四区视频| 成人污污视频在线观看| 欧美成人国产一区二区| 欧美在线视频你懂得| 精品夜夜嗨av一区二区三区| 欧美在线观看一区二区| 国产福利不卡视频| 五月综合激情婷婷六月色窝| 久久久天堂av| 日韩免费高清视频| 91精品国产91久久久久久一区二区| 国产欧美一区二区精品性色超碰 | 久久国产福利国产秒拍| 亚洲人午夜精品天堂一二香蕉| 欧美激情一区二区| 午夜精品久久久久久不卡8050| 日韩欧美成人午夜| 亚洲高清免费在线| 91久久精品一区二区二区| 亚洲国产wwwccc36天堂| 久久这里只有精品6| 在线视频你懂得一区二区三区| 午夜精品久久久久久不卡8050| 国产欧美一区二区三区鸳鸯浴| 欧美视频一区二区| 国产乱码一区二区三区| 日本欧洲一区二区| 一区二区三区四区五区视频在线观看| 日韩视频在线你懂得| 日本久久精品电影| 国产成人免费视| 欧美一区二区精美| 奇米影视一区二区三区| 久久日韩精品一区二区五区| 一本色道久久综合精品竹菊| 日本欧美一区二区在线观看| 国产日韩亚洲欧美综合| 久久精品人人做人人爽97| 884aa四虎影成人精品一区| 欧美精品日韩综合在线| 欧美亚洲图片小说| 91成人免费网站| 亚洲激情男女视频| 亚洲人成精品久久久久久|