Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 
Florian Eisenmenger 41ccc32b5d checkin vor 2 Jahren
..
Block checkin vor 2 Jahren
Console/Command checkin vor 2 Jahren
Controller checkin vor 2 Jahren
Exception checkin vor 2 Jahren
Helper checkin vor 2 Jahren
Model checkin vor 2 Jahren
Observer checkin vor 2 Jahren
Plugin checkin vor 2 Jahren
Test checkin vor 2 Jahren
ViewModel checkin vor 2 Jahren
etc checkin vor 2 Jahren
i18n checkin vor 2 Jahren
view checkin vor 2 Jahren
LICENSE.txt checkin vor 2 Jahren
LICENSE_AFL.txt checkin vor 2 Jahren
README.md checkin vor 2 Jahren
composer.json checkin vor 2 Jahren
registration.php checkin vor 2 Jahren

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.