- Require the bundle with composer:
composer req symfony-bundles/redis-bundle
If you want to configure Redis clients - create a configuration file. For example:
# config/packages/sb_redis.yaml
sb_redis:
clients:
default:
$options: []
$parameters: ['tcp://127.0.0.1:6379?database=3']
If you want to configure Redis clients Sentinel:
# config/packages/sb_redis.yaml
sb_redis:
clients:
default:
$options:
replication: 'sentinel’
service: 'mymaster'
parameters:
database: '3'
$parameters: ['%env(REDIS_URL)%', '%env(REDIS_URL)%']
Read more about supported client options and connection parameters:
Read more on the page Quick tour.