Created
March 31, 2013 22:06
-
-
Save valorin/5282187 to your computer and use it in GitHub Desktop.
Config and Module cache options found in ./config/application.config.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Whether or not to enable a configuration cache. | |
// If enabled, the merged configuration will be cached and used in | |
// subsequent requests. | |
'config_cache_enabled' => $booleanValue, | |
// The key used to create the configuration cache file name. | |
'config_cache_key' => $stringKey, | |
// Whether or not to enable a module class map cache. | |
// If enabled, creates a module class map cache which will be used | |
// by in future requests, to reduce the autoloading process. | |
'module_map_cache_enabled' => $booleanValue, | |
// The key used to create the class map cache file name. | |
'module_map_cache_key' => $stringKey, | |
// The path in which to cache merged configuration. | |
'cache_dir' => $stringPath, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment