symfony-bundles/redis-bundle

Symfony Redis Bundle

Installs: 780 898

Dependents: 4

Suggesters: 0

Security: 0

Stars: 24

Watchers: 6

Forks: 8

Open Issues: 0

Type:symfony-bundle

3.1.6 2024-01-17 18:25 UTC

This package is auto-updated.

Last update: 2024-04-17 18:57:50 UTC


README

Build Code Coverage Total Downloads Latest Stable Version License

Installation

  • Require the bundle with composer:
composer req symfony-bundles/redis-bundle

Configuring of the clients

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:

How to use

Read more on the page Quick tour.