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",'127.0.0.1'),
- 'port' => env("redis.port",'6379'),
- 'password' => env("redis.password",'Test!@#123'),
- 'timeout' => 3600
- ],
-
- ],
- ];
|