Adding more data means that your website will be possibly overloaded or run slowlier. It is necessary to Manage the Cache to solve this problem. For example, by clearing Cache, you can protect the personal information and help the application run faster.
With different usages, all 10 types of Cache are effective in improving the speed, making your Store perform better.
In details, the different categogies of Cache are:
Configuration
: After adapting configuration files, it is necessary to flush them including configuration and store specific settingsLayouts
: After adapting layout files, it is necessary to flush them including the compiled page layout from all componentsBlocks HTML output
: After adapting the view layers, it is necessary to flush them including page fragments per blockCollections Data
: By Magento, it can flush automatically database queries. However, Custom modules may write entries which make Magento can not clean by itself, in case, Magento can not clean so we need to clean the cacheReflection Data
: API interfaces reflection data will be flushedDatabase DDL operations
: it can be flush automatically by Magento, but 3rd party can plus more data, after making custom changes to the database schema
, which can clean the cacheEAV types and attributes
: The metadata regarding the entity attributes into the cache, in general, it should not flush the cacheIntegrations Configuration
: Caches the compiled integrations on your store. Clean after adding new or changing existing integrationsIntegrations API Configuration
: Compiled integration APIs configuration of the Store’s IntegrationsPage Cache
: This cache links the HTML pages so it is necessary to clean this type of cache regularlyTranslations
: After merging translations from all modules, the merger cache will be cleanedWeb Services Configuration
: Caching the Web API Structure
Firstly, you need to log in Magento Admin Dashboard, then follow all these steps
System
Cache Management
Related posts:
It comes to the end of tutorial: 10 Cache Types: How to Manage Cache in Magento 2.
Please leave comments if you have any questions, feedbacks.