123456789101112131415161718192021222324252627282930313233343536 |
- <?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
- ],
-
- ],
- ];
|