From 7c0bd19a1578680425c01799ba490ee85fa22cd0 Mon Sep 17 00:00:00 2001 From: Lars Date: Thu, 31 Aug 2023 17:55:31 +0200 Subject: [PATCH 1/2] add waring for redis serializer and compression --- queues.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/queues.md b/queues.md index b7198dbc9cc..5e40a72518d 100644 --- a/queues.md +++ b/queues.md @@ -107,6 +107,9 @@ Finally, don't forget to instruct your application to use the `database` driver In order to use the `redis` queue driver, you should configure a Redis database connection in your `config/database.php` configuration file. +> **Warning** +> The options `serializer` and `compression` are not supported by the `redis` queue driver. + **Redis Cluster** If your Redis queue connection uses a Redis Cluster, your queue names must contain a [key hash tag](https://redis.io/docs/reference/cluster-spec/#hash-tags). This is required in order to ensure all of the Redis keys for a given queue are placed into the same hash slot: From 901997b2cfed31dd9d9970019185a4d5505095d9 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 31 Aug 2023 12:31:32 -0500 Subject: [PATCH 2/2] formatting --- queues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queues.md b/queues.md index 5e40a72518d..adc36f2907a 100644 --- a/queues.md +++ b/queues.md @@ -108,7 +108,7 @@ Finally, don't forget to instruct your application to use the `database` driver In order to use the `redis` queue driver, you should configure a Redis database connection in your `config/database.php` configuration file. > **Warning** -> The options `serializer` and `compression` are not supported by the `redis` queue driver. +> The `serializer` and `compression` Redis options are not supported by the `redis` queue driver. **Redis Cluster**