1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- use think\facade\Env;
- return [
-
- 'default' => Env::get('cache.driver', 'file'),
-
- 'stores' => [
- 'file' => [
-
- 'type' => 'File',
-
- 'path' => app()->getRuntimePath() . 'cache' . DIRECTORY_SEPARATOR,
-
- 'prefix' => '',
-
- 'expire' => 0,
-
- 'tag_prefix' => 'tag:',
-
- 'serialize' => [],
- ],
-
- ],
- ];
|