cache.php 354 B

123456789101112131415161718
  1. <?php
  2. return [
  3. 'default' => getenv('CACHE_MODE'),
  4. 'stores' => [
  5. 'file' => [
  6. 'driver' => 'file',
  7. 'path' => runtime_path('cache')
  8. ],
  9. 'redis' => [
  10. 'driver' => 'redis',
  11. 'connection' => 'default'
  12. ],
  13. 'array' => [
  14. 'driver' => 'array'
  15. ]
  16. ]
  17. ];