1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- return [
-
- 'default' => env('cache.driver', 'file'),
-
- 'stores' => [
- 'file' => [
-
- 'type' => 'File',
-
- 'path' => app()->getRuntimePath() . 'cache' . DIRECTORY_SEPARATOR,
-
- 'prefix' => '',
-
- 'expire' => 0,
-
- 'tag_prefix' => 'tag:',
-
- 'serialize' => [],
- ],
-
- 'jwt' => [
-
- 'type' => 'File',
-
- 'path' => app()->getRuntimePath() . 'jwt' . DIRECTORY_SEPARATOR,
-
- 'prefix' => '',
-
- 'expire' => 0,
-
- 'tag_prefix' => 'tag:',
-
- 'serialize' => [],
- ],
-
- 'redis' => [
-
- 'type' => 'redis',
-
- 'host' => env('redis.redis_hostname', '127.0.0.1'),
-
- 'port' => env('redis.port', '6379'),
-
- 'password' => env('redis.redis_password', ''),
-
- 'expire' => 0 ,
-
- 'prefix' => '',
-
- 'tag_prefix' => 'tag:',
-
- 'select' => env('redis.select', 0),
- 'serialize' => [],
-
- 'timeout' => 0
- ],
- ],
- ];
|