Loading...
Loading...
Optimizes Magento 2 caching strategies for enterprise performance. Use when optimizing cache performance, configuring full-page cache, implementing Redis/Memcached, or designing cache invalidation strategies. Masters FPC, application cache, and distributed caching solutions.
npx skill4agent add maxnorm/magento2-agent-skills magento-cache-analyst// app/etc/env.php
'cache' => [
'frontend' => [
'default' => [
'backend' => 'Cm_Cache_Backend_Redis',
'backend_options' => [
'server' => '127.0.0.1',
'port' => '6379',
'database' => '0',
]
]
]
]# Clear all cache
bin/magento cache:clean
bin/magento cache:flush
# Enable/disable cache types
bin/magento cache:enable
bin/magento cache:disable
# Cache status
bin/magento cache:status