91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

剑阁县| 阿合奇县| 家居| 海宁市| 政和县| 三门县| 阳高县| 民和| 三亚市| 镇原县| 漠河县| 新竹县| 潍坊市| 屏山县| 高雄市| 乌鲁木齐县| 双江| 洛隆县| 巨鹿县| 手机| 和静县| 罗江县| 泸溪县| 调兵山市| 镇宁| 黄梅县| 乌兰察布市| 门源| 尚义县| 石嘴山市| 京山县| 新昌县| 湟源县| 宝清县| 章丘市| 奎屯市| 平定县| 民权县| 兴仁县| 邯郸市| 蓬莱市|