CI框架中怎么用redis_百度知道
最佳答案: codeigniter3.*已经自带redis库了 # 新建 /application/config/redis.php 配置如下$config['socket_type'] = 'tcp';$config['host'] = '127.0.0...更多关于ci框架怎么给redis加前缀的问题>>
Codeigniter的Redis使用 - 陈教授Aston - 博客园
2017年1月5日 - <?php class RedisService{ public $CI; public $redis; public function __construct() { $this->CI = & get_instance(); $this->CI->load->driver('...