فهرست منبع

Change cache engine from File to Apc

As of CakePHP 2.3 File is the default cache engine and a different
engine must be configured manually.
Schlaefer 12 سال پیش
والد
کامیت
0c3d4680dd
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      cake/app/Config/core.php

+ 1 - 1
cake/app/Config/core.php

@@ -248,7 +248,7 @@ Configure::write('App.baseUrl', env('SCRIPT_NAME'));
  *       Please check the comments in boostrap.php for more info on the cache engines available
  *       and their setttings.
  */
-$engine = 'File';
+$engine = 'Apc';
 
 // In development mode, caches should expire quickly.
 $duration = '+999 days';