Skip to content

Instantly share code, notes, and snippets.

@valorin
Created March 31, 2013 22:06
Show Gist options
  • Save valorin/5282187 to your computer and use it in GitHub Desktop.
Save valorin/5282187 to your computer and use it in GitHub Desktop.
Config and Module cache options found in ./config/application.config.php
<?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