facebook twitter hatena line email

Php/fuelphp/redis

提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 03:13時点における127.0.0.1 (トーク)による版 (ページの作成:「==redisを使う== *fuel/app/config/db.php 'redis' => array( 'default' => array( 'hostname' => '127.0.0.1', 'port' => 6379...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

redisを使う

  • fuel/app/config/db.php
'redis' => array(
        'default' => array(
                'hostname' => '127.0.0.1',
                'port'     => 6379
        )
),
  • fuel/app/config/cache.php
<?php
return array(
 'driver' => 'redis',
 'expiration' => null,
 'cache_id' => 'fuel1', // アプリのunique_idなどをいれておく。
 'redis'  => array(
   'database' => 'default'
 ),
);
  • fuel/app/controller/sample/php
try {
    $test = Cache::get('test');
} catch (\CacheNotFoundException $e) {
    $test = 1;
    Cache::set('test', $test);
}

これで動くはずだけど

ErrorException [ Error ]: Call to undefined method Redis::instance()

とでた。なぜ?

(未完成)