Initial V2 commit
This commit is contained in:
21
config/cache.php
Normal file
21
config/cache.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'default' => env('CACHE_DRIVER', 'redis'),
|
||||
'stores' => [
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => 'cache',
|
||||
'lock_connection' => 'default',
|
||||
],
|
||||
'file' => [
|
||||
'driver' => 'file',
|
||||
'path' => storage_path('framework/cache/data'),
|
||||
],
|
||||
'array' => [
|
||||
'driver' => 'array',
|
||||
'serialize' => false,
|
||||
],
|
||||
],
|
||||
'prefix' => env('CACHE_PREFIX', 'intaleq_v2'),
|
||||
];
|
||||
Reference in New Issue
Block a user