-
-
Save overcome/a2c6956ef0dd52d5fbcbc2a4b27f5f2d to your computer and use it in GitHub Desktop.
Redis Configuration in TYPO3
This file contains hidden or 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 | |
return array( | |
// ... | |
'SYS' => array( | |
'caching' => array( | |
'cacheConfigurations' => array( | |
'cf_cache_hash' => array( | |
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\RedisBackend', | |
'options' => array( | |
'database' => 10, | |
'defaultLifetime' => 86400, | |
), | |
), | |
'cf_cache_pages' => array( | |
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\RedisBackend', | |
'options' => array( | |
'database' => 11, | |
'defaultLifetime' => 86400, | |
), | |
), | |
'cf_cache_pagesection' => array( | |
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\RedisBackend', | |
'options' => array( | |
'database' => 12, | |
'defaultLifetime' => 86400, | |
), | |
), | |
'cf_extbase_reflection' => array( | |
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\RedisBackend', | |
'options' => array( | |
'database' => 13, | |
'defaultLifetime' => 86400, | |
), | |
), | |
), | |
), | |
// ... | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment