change cache engine from File -> Apc
This commit is contained in:
parent
48e2c5f6ec
commit
48a73f7e78
|
@ -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.
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue