-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix PageCache: async rendering of blocks can corrupt layout cache
Refactored original solution, implemented cache keys for layout to be able to generate different unique cache ids also based on possibly added cache keys
- Loading branch information
1 parent
1bb25ed
commit 0e830c1
Showing
6 changed files
with
139 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
return array ( | ||
'backend' => | ||
array ( | ||
'frontName' => 'suadmin', | ||
), | ||
'crypt' => | ||
array ( | ||
'key' => '5b2bd4f91709ea56ce8a0b1bc00b67a0', | ||
), | ||
'session' => | ||
array ( | ||
'save' => 'files', | ||
), | ||
'db' => | ||
array ( | ||
'table_prefix' => '', | ||
'connection' => | ||
array ( | ||
'default' => | ||
array ( | ||
'host' => 'localhost', | ||
'dbname' => 'mg2develop', | ||
'username' => 'zend', | ||
'password' => '', | ||
'model' => 'mysql4', | ||
'engine' => 'innodb', | ||
'initStatements' => 'SET NAMES utf8;', | ||
'active' => '1', | ||
), | ||
), | ||
), | ||
'resource' => | ||
array ( | ||
'default_setup' => | ||
array ( | ||
'connection' => 'default', | ||
), | ||
), | ||
'x-frame-options' => 'SAMEORIGIN', | ||
'MAGE_MODE' => 'default', | ||
'cache_types' => | ||
array ( | ||
'config' => 1, | ||
'layout' => 1, | ||
'block_html' => 1, | ||
'collections' => 1, | ||
'reflection' => 1, | ||
'db_ddl' => 1, | ||
'eav' => 1, | ||
'customer_notification' => 1, | ||
'config_integration' => 1, | ||
'config_integration_api' => 1, | ||
'full_page' => 1, | ||
'translate' => 1, | ||
'config_webservice' => 1, | ||
), | ||
'install' => | ||
array ( | ||
'date' => 'Mon, 08 May 2017 23:53:11 +0000', | ||
), | ||
); |
This file contains 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
This file contains 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