Skip to content

[12.x] Add proper links #10711

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions queues.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ In order to use the `redis` queue driver, you should configure a Redis database
> [!WARNING]
> The `serializer` and `compression` Redis options are not supported by the `redis` queue driver.

**Redis Cluster**
<a name="redis-cluster"></a>
##### Redis Cluster

If your Redis queue connection uses a [Redis Cluster](https://redis.io/docs/latest/operate/rs/databases/durability-ha/clustering), your queue names must contain a [key hash tag](https://redis.io/docs/latest/develop/using-commands/keyspace/#hashtags). This is required in order to ensure all of the Redis keys for a given queue are placed into the same hash slot:

Expand All @@ -127,7 +128,8 @@ If your Redis queue connection uses a [Redis Cluster](https://redis.io/docs/late
],
```

**Blocking**
<a name="blocking"></a>
##### Blocking

When using the Redis queue, you may use the `block_for` configuration option to specify how long the driver should wait for a job to become available before iterating through the worker loop and re-polling the Redis database.

Expand Down