12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- return [
-
- 'default' => env('cache.driver', 'redis'),
-
- 'stores' => [
- 'file' => [
-
- 'type' => 'File',
-
- 'path' => '',
-
- 'prefix' => '',
-
- 'expire' => 0,
-
- 'tag_prefix' => 'tag:',
-
- 'serialize' => [],
- ],
-
- 'redis'=>[
- 'type' => 'Redis',
- 'host' => env("redis.host"),
- 'port' => env("redis.port"),
- 'password' =>env("redis.password"),
- 'timeout' => 3600
- ],
-
- ],
- ];
|