From 10350a9fdcd7f25c9d20e772781737f4ab5913c3 Mon Sep 17 00:00:00 2001 From: 0x20h Date: Mon, 6 Feb 2012 21:02:52 +0100 Subject: [PATCH] added a further note where to look for available cache implementations and their respective settings --- app/Config/core.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Config/core.php b/app/Config/core.php index d128bbd50..2493bcb6d 100644 --- a/app/Config/core.php +++ b/app/Config/core.php @@ -235,7 +235,9 @@ * Pick the caching engine to use. If APC is enabled use it. * If running via cli - apc is disabled by default. ensure it's available and enabled in this case * - * Note: 'default' and other application caches should be configured in app/Config/bootstrap.php + * Note: 'default' and other application caches should be configured in app/Config/bootstrap.php. + * Please check the comments in boostrap.php for more info on the cache engines available + * and their setttings. */ $engine = 'File'; if (extension_loaded('apc') && function_exists('apc_dec') && (php_sapi_name() !== 'cli' || ini_get('apc.enable_cli'))) {