Redis Client,单例
php代码
<?php //if(!defined('BASEPATH')) exit('No direct script access allowed...'); /** * ---------------- redis.conf.php ------------------ * $redis_conf = array(); * $redis_conf['master'] = array();; * $redis_conf['master']['host'] = '127.0.0.1'; * $redis_conf['master']['port'] = 6379; * $redis_conf['master']['passwd'] = ''; * $redis_conf['master']['timeout'] = 1; * ---------------- author: simon ------------------ */ /** * Redis Client Interface * * ------------------- Usage --------------------- * $conf_dir = __DIR__ .'/../conf/redis.conf.php'; * $redis = RedisCli::getInstance($conf_dir, 'master'); * $ret = $redis->set('xxxxx', 'good'); * $ret = $redis->get('xxxxx'); * */ class RedisCli { private static $_instance = array(); private $_redis = false; /** * 单例模型,构造函数 */ public static function getInstance($conf_dir='/xxx/redis.conf.php', $serverName='master') { if (isset(self::$_instance[$serverName])) { return self::$_instance[$serverName]; } require_once($conf_dir); if (!isset($redis_conf[$serverName])) { throw new Exception("param serverName Or redis config error..."); } $conf = $redis_conf[$serverName]; if (!class_exists('Redis')) { throw new Exception("Class Redis not exists, please install the php Redis extension..."); } if (isset($conf['host']) && isset($conf['port']) && isset($conf['passwd']) && isset($conf['timeout'])) { self::$_instance[$serverName] = new self($conf['host'], $conf['port'], $conf['passwd'], $conf['timeout']); return self::$_instance[$serverName]; } return false; } /** * 私有, 单例模型,禁止外部构造 */ private function __construct($host, $port, $passwd, $timeout) { $this->_redis = new Redis(); if ($this->_redis->connect($host, $port, $timeout)) { if (!empty($passwd)) { $this->_redis->auth($passwd); } } } /** * 私有, 单例模型,禁止克隆 */ private function __clone() { } /** * 公有,调用对象函数 */ public function __call($method, $args) { if (!$this->_redis || !$method) { return false; } if (!method_exists($this->_redis, $method)) { throw new Exception("Class RedisCli not have method ($method) "); } return call_user_func_array(array($this->_redis, $method), $args); } } ?>
登录后复制
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章
仓库:如何复兴队友
1 个月前
By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
1 个月前
By 尊渡假赌尊渡假赌尊渡假赌
击败分裂小说需要多长时间?
4 周前
By DDD
R.E.P.O.保存文件位置:在哪里以及如何保护它?
4 周前
By DDD

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)