「Php/Symfony/Symfony2/redis」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→参考) |
|||
行10: | 行10: | ||
"snc/redis-bundle": "^2.0" | "snc/redis-bundle": "^2.0" | ||
} | } | ||
+ | |||
+ | ==組み込み== | ||
+ | -app/AppKernel.php | ||
+ | public function registerBundles() | ||
+ | { | ||
+ | $bundles = array( | ||
+ | // 略 | ||
+ | new Snc\RedisBundle\SncRedisBundle(), | ||
+ | // 略 | ||
+ | ); | ||
+ | } | ||
==参考== | ==参考== |
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/