From 8e93cae119abfab083041fa16ea38afd9c811df3 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 21 Oct 2025 11:27:10 -0400 Subject: [PATCH] add failover cache config --- config/cache.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/config/cache.php b/config/cache.php index c2d927d7..b32aead2 100644 --- a/config/cache.php +++ b/config/cache.php @@ -27,7 +27,8 @@ return [ | same cache driver to group types of items stored in your caches. | | Supported drivers: "array", "database", "file", "memcached", - | "redis", "dynamodb", "octane", "null" + | "redis", "dynamodb", "octane", + | "failover", "null" | */ @@ -90,6 +91,14 @@ return [ 'driver' => 'octane', ], + 'failover' => [ + 'driver' => 'failover', + 'stores' => [ + 'database', + 'array', + ], + ], + ], /*