From 637c85d624bf19355025b68aaa90e6cadf8a2881 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 14 May 2021 10:09:46 -0500 Subject: [PATCH] wip --- config/cache.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/cache.php b/config/cache.php index 32fd2039..8736c7a7 100644 --- a/config/cache.php +++ b/config/cache.php @@ -27,7 +27,7 @@ return [ | same cache driver to group types of items stored in your caches. | | Supported drivers: "apc", "array", "database", "file", - | "memcached", "redis", "dynamodb", "null" + | "memcached", "redis", "dynamodb", "octane", "null" | */ @@ -37,10 +37,6 @@ return [ 'driver' => 'apc', ], - 'octane' => [ - 'driver' => 'octane', - ], - 'array' => [ 'driver' => 'array', 'serialize' => false, @@ -92,6 +88,10 @@ return [ 'endpoint' => env('DYNAMODB_ENDPOINT'), ], + 'octane' => [ + 'driver' => 'octane', + ], + ], /*