Most of you probably know that Magento uses an EAV database structure for categories, and products. In some cases, this solution is not the best or fastest. and for that, there is an option of Magento 2 Flat Catalog.
I will show you here examples of how to speed up product collection. Magento has config options: “Use Flat Catalog Category” and “Use Flat Catalog Product”.
The difference between the Magento 2 EAV catalog and the Magento 2 Flat Catalog is as follows:
1. Eav Catalog
EAV is an entity attribute value database model, where data is fully in normalized form. Each column’s data value is stored in its respective data type table. For example, for a product,
The product ID is stored in catalog_product_entity_int table,
Product name in catalog_product_entity_varchar table,
Product price in catalog_product_entity_decimal table,
The product created date in catalog_product_entity_datetime table,
Product description in catalog_product_entity_text table.
EAV is complex as it joins 5-6 tables even if you want to get just one product’s details.
Columns are called attributes in EAV.
2. Flat Catalog
The flat model uses just one table, so it’s not normalized and uses more database space. It clears the EAV overhead,
It’s good when comes to performance, as it will only require one query to load whole product instead of joining 5-6 tables to get just one product’s details.
Columns are called fields in the flat model.
Magento implemented indexers which will periodically query the standard collections and populate flat database tables in the following format. Where * is store id.
catalog_category_flat_store_*
catalog_product_flat_*
These tables have the non-normalized product and category data that are intended to be read-only. This allows Magento to fetch category and product data in a single query.
For More Information, Visit:- https://stagebit.com/magento-2/eav-flat-catalog-magento/?utm_source=writeupcafe&utm_medium=article&utm_campaign=july-2022
Sign in to leave a comment.