cache.php 245 B

12345678910
  1. <?php
  2. return [
  3. 'drive' => 'file', // [file | redis] 调用Cache:: 相关方法使用的缓存驱动
  4. 'file' => [
  5. 'path' => _APP_PATH_ . '/RunCache/cache', //文件缓存位置
  6. 'prefix' => 'one_' //文件前缀
  7. ],
  8. ];