복붙노트

[REDIS] 어떻게 CodeIgniter의에서 레디 스를 구현하는 방법?

REDIS

어떻게 CodeIgniter의에서 레디 스를 구현하는 방법?

나는 튜토리얼을 얻을 :

http://yaminnoor.com/redis-codeigniter/

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

나는 이런 식으로 시도 :

구성 (응용 프로그램 \ 설정 \ 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 :

모든 솔루션은 내 문제를 해결하기 위해?

해결법

  1. ==============================

    1.이봐: https://github.com/joelcox/codeigniter-redis 이 라이브러리를 사용해보십시오.

    이봐: https://github.com/joelcox/codeigniter-redis 이 라이브러리를 사용해보십시오.

  2. from https://stackoverflow.com/questions/36126170/how-to-implement-redis-in-codeigniter by cc-by-sa and MIT license