码迷,mamicode.com
首页 > 其他好文 > 详细

【redis 封装】

时间:2018-12-03 23:04:31      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:turn   namespace   error   @param   ber   sel   eol   self   connect   

<?php
/**
 * Created by PhpStorm.
 * User: andy
 * Date: 18/3/26
 */
namespace app\common\lib\redis;
class Predis {
    public $redis = "";
    /**
     * 定义单例模式的变量
     * @var null
     */
    private static $_instance = null;

    public static function getInstance() {
        if(empty(self::$_instance)) {
            self::$_instance = new self();
        }
        return self::$_instance;
    }

    private function __construct() {
        $this->redis = new \Redis();
        $result = $this->redis->connect(config(‘redis.host‘), config(‘redis.port‘), config(‘redis.timeOut‘));
        if($result === false) {
            throw new \Exception(‘redis connect error‘);
        }
    }

    /**
     * set
     * @param $key
     * @param $value
     * @param int $time
     * @return bool|string
     */
    public function set($key, $value, $time = 0 ) {
        if(!$key) {
            return ‘‘;
        }
        if(is_array($value)) {
            $value = json_encode($value);
        }
        if(!$time) {
            return $this->redis->set($key, $value);
        }

        return $this->redis->setex($key, $time, $value);
    }

    /**
     * get
     * @param $key
     * @return bool|string
     */
    public function get($key) {
        if(!$key) {
            return ‘‘;
        }

        return $this->redis->get($key);
    }

    /**
     * @param $key
     * @return array
     */
    public function sMembers($key) {
        return $this->redis->sMembers($key);
    }

    /**
     * @param $name
     * @param $arguments
     * @return array
     */
    public function __call($name, $arguments) {
        //echo $name.PHP_EOL;
        //print_r($arguments);
        if(count($arguments) != 2) {
            return ‘‘;
        }
        $this->redis->$name($arguments[0], $arguments[1]);
    }
}

总结:采用单例模式:减少资源不必要开销

【redis 封装】

标签:turn   namespace   error   @param   ber   sel   eol   self   connect   

原文地址:https://www.cnblogs.com/fyandy/p/10061329.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!