Pages and TS cache may contain a lot of data. According to studies
found on the Internet, saving long BLOBs to the database may cause
a major performance decrease. Enable compression to make chunks of
page and TS caches smaller.
This patch enables compression for cache_pages and cache_pagesection.
Change-Id: Ic40c5a419573e7890d475eab8bb55b3bb2d963bc
Resolves: #30605
Releases: 4.7
Reviewed-on: http://review.typo3.org/5595
Reviewed-by: Markus Klein
Reviewed-by: Christian Kuhn
Tested-by: Christian Kuhn
Reviewed-by: Simon Schaufelberger
Tested-by: Simon Schaufelberger
Reviewed-by: Georg Ringer
Reviewed-by: Steffen Ritter
Tested-by: Steffen Ritter
'cache_pages' => array(
'frontend' => 't3lib_cache_frontend_VariableFrontend',
'backend' => 't3lib_cache_backend_DbBackend',
- 'options' => array(),
+ 'options' => array(
+ 'compression' => TRUE
+ ),
),
'cache_pagesection' => array(
'frontend' => 't3lib_cache_frontend_VariableFrontend',
'backend' => 't3lib_cache_backend_DbBackend',
- 'options' => array(),
+ 'options' => array(
+ 'compression' => TRUE
+ ),
),
'cache_phpcode' => array(
'frontend' => 't3lib_cache_frontend_PhpFrontend',
$ACCESS_TIME = $EXEC_TIME - ($EXEC_TIME % 60); // $ACCESS_TIME is a common time in minutes for access control
$SIM_ACCESS_TIME = $ACCESS_TIME; // if $SIM_EXEC_TIME is changed this value must be set accordingly
-?>
\ No newline at end of file
+?>