「Php/Symfony/Symfony2/redis」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==事前準備== mac/インストール/redis [ショートカット] linux/redisインストール [ショートカット] ==symfonyにredisのcomposer追加...」) |
|||
(同じ利用者による、間の7版が非表示) | |||
行1: | 行1: | ||
==事前準備== | ==事前準備== | ||
− | + | [[mac/インストール/redis]] [ショートカット] | |
− | + | [[linux/redisインストール]] [ショートカット] | |
==symfonyにredisのcomposer追加== | ==symfonyにredisのcomposer追加== | ||
$ composer require snc/redis-bundle | $ 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/ |
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/