add failover cache config

This commit is contained in:
Taylor Otwell
2025-10-21 11:27:10 -04:00
parent 9eb5825101
commit 8e93cae119

View File

@@ -27,7 +27,8 @@ return [
| same cache driver to group types of items stored in your caches. | same cache driver to group types of items stored in your caches.
| |
| Supported drivers: "array", "database", "file", "memcached", | Supported drivers: "array", "database", "file", "memcached",
| "redis", "dynamodb", "octane", "null" | "redis", "dynamodb", "octane",
| "failover", "null"
| |
*/ */
@@ -90,6 +91,14 @@ return [
'driver' => 'octane', 'driver' => 'octane',
], ],
'failover' => [
'driver' => 'failover',
'stores' => [
'database',
'array',
],
],
], ],
/* /*