Как реализовать Redis в CodeIgniter?

Я получаю учебник в:

http://yaminnoor.com/rediscodeigniter/

https://codeigniter.com/user_guide/libraries/caching.html#redis

Я пробую так:

Config ( application\config\redis.php ):

 defined('BASEPATH') OR exit('No direct script access allowed'); $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'; //change this to match your amazon redis cluster node endpoint $config['password'] = NULL; $config['port'] = 6379; $config['timeout'] = 0; 

контроллер:

 <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Redis_tes extends CI_Controller { public function __construct() { parent::__construct(); $this->load->driver('cache', array('adapter' => 'redis', 'backup' => 'file')); } public function index() { // die('tes'); if($this->cache->redis->is_supported() || $this->cache->file->is_supported()) { $var1 = $this->cache->get('cache_var1'); } else { $cache_var1 = $this->_model_data->get_var1(); $this->cache->save('cache_var1', $cache_var1); } } } ?> 

Я запускаю http://localhost/app_redis/redis_tes , что приводит к следующей ошибке:

Была обнаружена ошибка

Запрос недействительного драйвера: CI_Cache_redis

Любое решение для решения моей проблемы?

Смотрите здесь: https://github.com/joelcox/codeigniter-redis Попробуйте использовать эту библиотеку.