欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php操作redis缓存方法分享

程序员文章站 2023-11-27 20:02:16
php redis缓存操作

php redis缓存操作

<?php
/**
 * redis缓存操作
 * @author hxm
 * @version 1.0
 * @since 2015.05.04
 */
class rcache extends object implements cacheface 
{
  private $redis = null; //redis对象
   
  private $sid  = 1;  //servier服务id
   
  private $con  = null;//链接资源
   
  /**
   * 初始化redis
   *
   * @return object
   */
  public function __construct()
  {
    if ( !class_exists('redis') )
    {
      throw new qexception('php extension does not exist: redis');
    }
    $this->redis = new redis();
  }
   
  /**
   * 链接memcahce服务
   *
   * @access private
   * @param  string $key 关键字
   * @param  string $value 缓存内容
   * @return array
   */
  private function connect( $sid )
  {
    $file = $this->cachefile();
    require $file;
    if(! isset($cache) )
    {
      throw new qexception('缓存配置文件不存在'.$file);
    }
    $server = $cache[$this->cacheid];
    $sid  = isset($sid) == 0 ? $this->sid : $sid;//memcache服务选择
    if ( ! $server[$sid])
    {
      throw new qexception('当前操作的缓存服务器配置文件不存在');
    }
    $host = $server[$sid]['host'];
    $port = $server[$sid]['port'];
    try {
      $this->redis->connect( $host , $port );
    } catch (exception $e) {
      exit('memecache连接失败,错误信息:'. $e->getmessage());
    }
  }
   
  /**
   * 写入缓存
   *
   * @access private
   * @param  string $key 关键字
   * @param  string $value 缓存内容
   * @return array
   */
  public function set( $key , $value , $sid , $expire = 0)
  {
    $data = $this->get($key , $sid); //如果已经存在key值
    if( $data ) 
    {
      return $this->redis->getset( $key , $value);
    } else {
      return $this->redis->set( $key , $value);
    }
  }
   
  /**
   * 读取缓存
   *
   * @access private
   * @param  string $key 关键字
   * @param  int   $sid 选择第几台memcache服务器
   * @return array
   */
  public function get( $key , $sid)
  {
    $this->connect( $sid );
    return $this->redis->get($key);
  }
   
  /**
   * 清洗(删除)已经存储的所有的元素
   *
   * @access private
   * @return array
   */
  public function flush()
  {
    $this->connect();
    return $this->redis->flushall();
  }
  /**
   * 删除缓存
   *
   * @access private
   * @param  string $key 关键字
   * @param  int   $sid 选择第几台memcache服务器
   * @return array
   */
  public function remove( $key , $sid)
  {
    $this->connect();
    return $this->redis->del($key);
  }
   
  /**
   * 析构函数
   * 最后关闭memcache
   */
  public function __destruct()
  {
    if($this->redis)
    {
      $this->redis->close();
    }
  }
}

以上所述就是本文的全部内容了,希望大家能够喜欢。