Can someone explain Magentos Indexing feature in detail?

后端 未结 3 863
既然无缘
既然无缘 2021-01-30 14:54

I kind of get how the indexing in Magento works, but I haven\'t seen any good documentation on this. I would kind of like to know the following.

  • How it works
3条回答
  •  误落风尘
    2021-01-30 15:50

    Magento indexing is not similar to normal database indexing and is more like database denormalization (http://en.wikipedia.org/wiki/Denormalization) process. In most cases it takes the EAV structure and makes it available for flat table structure which is by no doubt faster to access and search through.

    If your normal EAV query would be 200 left joins to get all the products in catalog and data over their attributes and layered navigation values then after "indexing" this data is available through denormalized data structure for faster querying/access

提交回复
热议问题