Magento 2 cache system
The Magento cache system has evolved since previous versions. In addition to greater power, it can be completely managed by the Magento 2 CLI tool. The Magento cache system manages the following types of cache:
Config: Contains all the settings of stored modules
Layout: Contains the build page layouts
HTML Block: Contains the compilation of HTML fragments (blocks)
Collections Date: Stores database queries
Data Definition Language: Stores information about the database schema
Entity attributes value (EAV): Contains metadata values defined in your Magento 2 admin panel, for example, name, price, and sku
Page cache: Generates caching of all HTML pages rendered by Magento 2
Reflection: Removes the dependency of the WebAPI module of the Customer module
Translations: Generates caching for all system translation files
Integration Configuration: Compiles the integration system
Integration API Configuration: Compiles integrations between APIs
Web Services Configuration: Contains...