mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
17 lines
338 B
Smarty
17 lines
338 B
Smarty
<?php
|
|
/**
|
|
* ApiAdmin缓存配置文件【由系统自动生成】
|
|
*/
|
|
return [
|
|
'cache' => [
|
|
// 驱动方式
|
|
'type' => 'File',
|
|
// 缓存保存目录
|
|
'path' => CACHE_PATH,
|
|
// 缓存前缀
|
|
'prefix' => '',
|
|
// 缓存有效期 0表示永久缓存
|
|
'expire' => 0,
|
|
]
|
|
];
|