Storage Services

Tags: services

The services defined by the storage application are listed below, and will vary depending on settings.

With SQL blob storage

When the blob storage is of “sql” type, the following services are available:

storage:
  blobs:
    type: sql

Final class for a service collection. Iterate on it to get a flattened (one level) and merged (services with same name that allows overrides are merged together) list of services.

With Redis blob storage

When the blob storage is of “redis” type, the following services are available:

storage:
  blobs:
    type: redis

Final class for a service collection. Iterate on it to get a flattened (one level) and merged (services with same name that allows overrides are merged together) list of services.

To customize the Redis client, you can override the blobs.redis settings in your configuration:

storage:
  blobs:
    type: redis
  redis:
    url: redis://localhost:6379/0 # this is the default, only set to override