facebook twitter hatena line email

「Php/Symfony/Symfony2/redis」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(symfonyにredisのcomposer追加)
 
(同じ利用者による、間の1版が非表示)
行11: 行11:
 
     }
 
     }
  
==参考==
+
==組み込み==
http://olegpuzanov.com/2015/02/01/using-redis-for-doctrine-caching-in-symfony2/
+
-app/AppKernel.php
 +
public function registerBundles()
 +
{
 +
    $bundles = array(
 +
        //
 +
        new Snc\RedisBundle\SncRedisBundle(),
 +
        //
 +
    );
 +
}
  
 +
==参考==
 
http://www.glic.co.jp/blog/archives/2627
 
http://www.glic.co.jp/blog/archives/2627
 +
 +
http://olegpuzanov.com/2015/02/01/using-redis-for-doctrine-caching-in-symfony2/

2017年1月10日 (火) 16:21時点における最新版

事前準備

mac/インストール/redis [ショートカット]

linux/redisインストール [ショートカット]

symfonyにredisのcomposer追加

$ composer require snc/redis-bundle

composer.jsonに以下が追加される

   "require": {
       "snc/redis-bundle": "^2.0"
   }

組み込み

-app/AppKernel.php

public function registerBundles()
{
   $bundles = array(
       // 略
       new Snc\RedisBundle\SncRedisBundle(),
       // 略
   );
}

参考

http://www.glic.co.jp/blog/archives/2627

http://olegpuzanov.com/2015/02/01/using-redis-for-doctrine-caching-in-symfony2/