Browse Source

Add serialize option to array cache config (#5244)

This documents the new configuration option from https://github.com/laravel/framework/pull/31295
Benedikt Franke 4 years ago
parent
commit
c9cf57a00c
1 changed files with 1 additions and 0 deletions
  1. 1 0
      config/cache.php

+ 1 - 0
config/cache.php

@@ -39,6 +39,7 @@ return [
 
         'array' => [
             'driver' => 'array',
+            'serialize' => false,
         ],
 
         'database' => [