| 123456789101112131415161718 |
- <?php
- return [
- 'default' => getenv('CACHE_MODE'),
- 'stores' => [
- 'file' => [
- 'driver' => 'file',
- 'path' => runtime_path('cache')
- ],
- 'redis' => [
- 'driver' => 'redis',
- 'connection' => 'default'
- ],
- 'array' => [
- 'driver' => 'array'
- ]
- ]
- ];
|