12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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',
- 'port' => '6379',
- 'password' => '123456',
- 'select' => '0',
-
- 'expire' => 0,
-
- 'prefix' => '',
- 'timeout' => 0,
- ],
- ],
- ];
|