12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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
- ],
- 'redis2'=>[
- 'type' => 'Redis',
- 'host' => '123.249.88.98',
- 'port' => '6379',
- 'password' => 'caixiao369',
- 'timeout' => 3600
- ]
-
- ],
- ];
|