Laravel - Configuration and Environment
Given this snippet from
config/cache.php:
'stores' => [
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
],
'redis' => [
'driver' => 'redis',
'connection' => 'cache',
],
],
'default' => 'redis',
What cache store will Laravel use by default?