您好,登錄后才能下訂單哦!
學習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模塊。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。