syscache
Categories
Component ID
2813445
Component name
syscache
Component type
module
Maintenance status
Development status
Component security advisory coverage
not-covered
Component created
Component changed
Component body
development is on github https://github.com/yurii-github/syscache
SysCache
This modules allows Drupal caches to be stored in filesystem instead of database.
Similar modules
https://www.drupal.org/project/staticfilecache
https://www.drupal.org/project/cache_debug
Instalation
add to settings.php next lines
<?php
$conf['cache_backends'] = ['sites/all/modules/syscache/src/DrupalSysCache.php'];
$conf['cache_default_class'] = 'DrupalSysCache';
$conf['sys_directory'] = '/some/your/syscache';
?>
