You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Florian Eisenmenger 41ccc32b5d checkin пре 2 година
..
Block checkin пре 2 година
Console/Command checkin пре 2 година
Controller checkin пре 2 година
Exception checkin пре 2 година
Helper checkin пре 2 година
Model checkin пре 2 година
Observer checkin пре 2 година
Plugin checkin пре 2 година
Test checkin пре 2 година
ViewModel checkin пре 2 година
etc checkin пре 2 година
i18n checkin пре 2 година
view checkin пре 2 година
LICENSE.txt checkin пре 2 година
LICENSE_AFL.txt checkin пре 2 година
README.md checkin пре 2 година
composer.json checkin пре 2 година
registration.php checkin пре 2 година

README.md

The PageCache module provides functionality of caching full pages content in Magento application. An administrator may switch between built-in caching and Varnish caching. Built-in caching is default and ready to use without the need of any external tools. Requests and responses are managed by PageCache plugin. It loads data from cache and returns a response. If data is not present in cache, it passes the request to Magento and waits for the response. Response is then saved in cache. Blocks can be set as private blocks by setting the property ‘_isScopePrivate’ to true. These blocks contain personalized information and are not cached in the server. These blocks are being rendered using AJAX call after the page is loaded. Contents are cached in browser instead. Blocks can also be set as non-cacheable by setting the ‘cacheable’ attribute in layout XML files. For example <block class="Block\Class" name="blockname" cacheable="false" />. Pages containing such blocks are not cached.