選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 
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.