Core/Application/Config/config.core.php
Abel Hoogeveen 7e3e707d9f Implemented Registry caching.
By changing the config.core.php file you can select how registries should be cached. Remember that this is not recommended during development.
The available options are file, apc, redis, memcached, wincache and dummy. Cache TTL can also be set. Some caching drivers require you to change the config.cache.php file.
2016-05-14 17:06:42 +02:00

10 lines
192 B
PHP

<?php
return array(
'enable_composer' => true,
'composer_autoloader' => '',
'registry_caching' => false,
'registry_caching_method' => 'file',
'registry_caching_time' => 300,
);