123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- return [
-
- 'default' => env('cache.driver', 'file'),
-
- 'stores' => [
- 'file' => [
-
- 'type' => 'File',
-
- 'path' => '',
-
- 'prefix' => '',
-
- 'expire' => 0,
-
- 'tag_prefix' => 'tag:',
-
- 'serialize' => [],
- ],
-
- 'redis' => [
-
- 'type' => 'redis',
-
- 'host' => '127.0.0.1',
- ]
-
- ],
- ];
|