How to achieve Redis queue per Drupal site?

Created on 12 April 2023, almost 2 years ago
Updated 17 September 2024, 7 months ago

Problem/Motivation

We have the following configuration in settings.php:

  $settings['cache_prefix'] = 'some_id_';
  $settings['redis.connection']['interface'] = 'PhpRedis';
  $settings['redis.connection']['host'] = 'localhost';
  $settings['cache']['default'] = 'cache.backend.redis';
  $settings['container_yamls'][] = 'modules/contrib/redis/example.services.yml';
  $settings['queue_default'] = 'queue.redis';

On the localhost, there are a number of Drupal sites, and they all use the cache prefix for all their keys. Except for the queue records, they all start with the hard-coded prefix drupal:queue:. This results in the queue being the same for all sites.

What's the recommended configuration to get individual queues for each Drupal site?

πŸ’¬ Support request
Status

Active

Version

1.0

Component

Documentation

Created by

πŸ‡©πŸ‡ͺGermany jurgenhaas Gottmadingen

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024