[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.이봐: https://github.com/joelcox/codeigniter-redis 이 라이브러리를 사용해보십시오.
이봐: https://github.com/joelcox/codeigniter-redis 이 라이브러리를 사용해보십시오.
from https://stackoverflow.com/questions/36126170/how-to-implement-redis-in-codeigniter by cc-by-sa and MIT license
'REDIS' 카테고리의 다른 글
[REDIS] nodejs와 레디 스 (node_redis)에 가입 게시 (0) | 2020.01.17 |
---|---|
[REDIS] 어떻게 레디 스 해시에서 핵심 패턴을 검색하려면? (0) | 2020.01.17 |
[REDIS] 각종되는 NoSQL 데이터베이스에 대한 빠른 참조 안내서 (0) | 2020.01.17 |
[REDIS] 연결은 - 레디 스 - 경쟁 조건에 대한 세션 개체를 보호하는 방법 (0) | 2020.01.17 |
[REDIS] 어떻게 레디 스 높은 처리량과 성능을 달성 하는가? (0) | 2020.01.17 |