中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

codeigniter 3.X使用redis

發布時間:2020-07-15 07:04:51 來源:網絡 閱讀:4962 作者:daweilang 欄目:開發技術

學習redis正好用codeigniter來練習


CI3.X自帶redis庫并且在兩個地方使用了這個功能,前提系統安裝phpredis 這個PHP擴展


1、儲存session的驅動支持redis

http://codeigniter.org.cn/user_guide/libraries/sessions.html?highlight=redis

設置application/config/config.php

$config['sess_driver'] = 'redis';
$config['sess_save_path'] = 'tcp://localhost:6379';

使用同session的使用,具體見手冊

$this->load->library('session');

這種方法只是使用redis來儲存session



2、CI的緩存驅動器(Caching Driver)

http://codeigniter.org.cn/user_guide/libraries/caching.html?highlight=redis#redis

CI3.X支持多種緩存方式,redis只是其中一種,不過CI將redis和其他緩存方式都放到“cache”這個驅動模塊中

$this->load->driver('cache', array('adapter' => 'apc', 'backup' => 'file'));

CI緩存使用方法見手冊


具體說說redis緩存的使用

修改 application/config/redis.php 設置

$config['socket_type'] = 'tcp'; //`tcp` or `unix`
$config['socket'] = '/var/run/redis.sock'; // in case of `unix` socket type
$config['host'] = '127.0.0.1';
$config['password'] = NULL;
$config['port'] = 6379;
$config['timeout'] = 0;

使用

$this->load->driver('cache');
$this->cache->redis->save('foo', 'bar', 10);


redis緩存在CI中的設置十分簡單,BUT,

可能是因為redis只是緩存驅動的一種,CI能實現的功能也十分簡單。

源碼 system/libraries/Cache/drivers/Cache_redis.php的111行

$this->_redis = new Redis();

CI并沒繼承phpredis的類,所以cache對redis的操作進行了封裝,看封裝的幾個方法,CI的redis驅動只支持簡單的字符串類型



codeigniter-redis第三方驅動

https://github.com/joelcox/codeigniter-redis

看更新時間,還是CI 2.X時候開發的,不過phpredis沒有太大升級,CI 3.X用起來應該也沒什么影響

安裝也很簡單

將Redis.php類庫放到system/libraries下

application/config/autoload.php 加載類庫,添加

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

在 application/config/redis.php

添加配置

$config['redis_default']['host'] = '127.0.0.1';        // 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'] = '127.0.0.1';
$config['redis_slave']['port'] = '6379';
$config['redis_slave']['password'] = '';

現在就可以用CI類庫的方式使用redis了

 測試

    $this->load->driver('redis');
    $array_mset=array(
                    'first_key'=>'first_val',
                    'second_key'=>'second_val',
                    'third_key'=>'third_val'
    );
    $this->redis->mset($array_mset); #用MSET一次儲存多個值
    $array_mget=array('first_key','second_key','third_key');
    var_dump($this->redis->mget($array_mget)); 
    #一次返回多個值 //array(3) { [0]=> string(9) "first_val" [1]=> string(10) "second_val" [2]=> string(9) "third_val" }


不過這里有個沖突,加載第三方redis類庫后,原生的cache無法使用redis模塊,

因為第三方redis類庫的config和CI 3.X的redis驅動config的結構不同,加載方式也不同

第三方autoload時

$this->_ci->load->config('redis');

而Cache_redis.php是

$CI->config->load('redis', TRUE, TRUE)

所以造成cache無法使用redis模塊。

(測試CI的autoload加載模塊先加載,默認模塊是調用時候加載)


解決方案,修改cache的redis配置,放到一個redis數組中

$config['redis']['socket_type'] = 'tcp'; //`tcp` or `unix`
$config['redis']['socket'] = '/var/run/redis.sock'; 
$config['redis']['host'] = '127.0.0.1';
$config['redis']['password'] = NULL;
$config['redis']['port'] = 6379;
$config['redis']['timeout'] = 0;


其實個人覺得沒這個必要,如果使用了第三方redis類庫沒必要同時使用cache模塊。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

逊克县| 额敏县| 石城县| 洛南县| 绥化市| 吉隆县| 滁州市| 栖霞市| 峨边| 安阳市| 蒙城县| 买车| 郸城县| 辽宁省| 麻城市| 翁牛特旗| 长寿区| 大理市| 嫩江县| 霍邱县| 辉县市| 宝清县| 车险| 长宁区| 张家港市| 永嘉县| 沈阳市| 依兰县| 微博| 华宁县| 金门县| 珲春市| 延寿县| 侯马市| 道孚县| 明溪县| 嘉黎县| 安图县| 永州市| 曲周县| 牙克石市|