// +---------------------------------------------------------------------- namespace think\cache\driver; use think\Cache; use think\Exception; /** * Redis缓存驱动 * 要求安装phpredis扩展:https://github.com/nicolasff/phpredis * @author 尘缘 <130775@qq.com> */ class Redis implements CacheInterface { protected $handler = null; protected $options = [ 'host' => '127.0.0.1', 'port' => 6379, 'password' => '', 'timeout' => false, 'expire' => false, 'persistent' => false, 'length' => 0, 'prefix' => '', ]; /** * 架构函数 * @param array $options 缓存参数 * @access public */ public function __construct($options = []) { if (!extension_loaded('redis')) { throw new Exception('_NOT_SUPPERT_:redis'); } if (!empty($options)) { $this->options = array_merge($this->options, $options); } $func = $this->options['persistent'] ? 'pconnect' : 'connect'; $this->handler = new \Redis; false === $this->options['timeout'] ? $this->handler->$func($this->options['host'], $this->options['port']) : $this->handler->$func($this->options['host'], $this->options['port'], $this->options['timeout']); if ('' != $this->options['password']) { $this->handler->auth($this->options['password']); } } /** * 读取缓存 * @access public * @param string $name 缓存变量名 * @return mixed */ public function get($name) { Cache::$readTimes++; $value = $this->handler->get($this->options['prefix'] . $name); $jsonData = json_decode($value, true); // 检测是否为JSON数据 true 返回JSON解析数组, false返回源数据 byron sampson return (null === $jsonData) ? $value : $jsonData; } /** * 写入缓存 * @access public * @param string $name 缓存变量名 * @param mixed $value 存储数据 * @param integer $expire 有效时间(秒) * @return boolean */ public function set($name, $value, $expire = null) { Cache::$writeTimes++; if (is_null($expire)) { $expire = $this->options['expire']; } $name = $this->options['prefix'] . $name; //对数组/对象数据进行缓存处理,保证数据完整性 byron sampson $value = (is_object($value) || is_array($value)) ? json_encode($value) : $value; if (is_int($expire)) { $result = $this->handler->setex($name, $expire, $value); } else { $result = $this->handler->set($name, $value); } if ($result && $this->options['length'] > 0) { if ($this->options['length'] > 0) { // 记录缓存队列 $queue = $this->handler->get('__info__'); $queue = explode(',', $queue); if (false === array_search($name, $queue)) { array_push($queue, $name); } if (count($queue) > $this->options['length']) { // 出列 $key = array_shift($queue); // 删除缓存 $this->handler->delete($key); } $this->handler->set('__info__', implode(',', $queue)); } } return $result; } /** * 删除缓存 * @access public * @param string $name 缓存变量名 * @return boolean */ public function rm($name) { return $this->handler->delete($this->options['prefix'] . $name); } /** * 清除缓存 * @access public * @return boolean */ public function clear() { return $this->handler->flushDB(); } }