change cache engine from File -> Apc

This commit is contained in:
Andrew Bauer 2017-04-14 14:31:42 -05:00
parent 48e2c5f6ec
commit 48a73f7e78
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
*/
// Setup a 'default' cache configuration for use in the application.
Cache::config('default', array('engine' => 'File'));
Cache::config('default', array('engine' => 'Apc'));
/**
* The settings below can be used to set additional paths to models, views and controllers.

View File

@ -352,7 +352,7 @@
* Please check the comments in bootstrap.php for more info on the cache engines available
* and their settings.
*/
$engine = 'File';
$engine = 'Apc';
// In development mode, caches should expire quickly.
$duration = '+999 days';