Questions tagged «optimization»


1
Magento 1.9:产品价格表-它们如何工作?
Magento有很多表格可以管理价格 在我看来: 在产品/类别页面中,产品价格是从catalog_product_flat表中加载的。 在搜索页面中,使用_idx表(我认为是价格范围过滤器)。 数据表 | 桌子 注意事项 | --------------------------------------------- | --- --------------------- | | catalog_product_index_price | 有数据-主表| | catalog_product_index_price_idx | 有数据| | catalog_product_index_price_tmp | 有数据| 没有数据的表 | 桌子 注意事项 | --------------------------------------------- | --- --------------------- | | catalog_product_index_price_bundle_idx | 没有数据 | catalog_product_index_price_bundle_opt_idx | 没有数据 | catalog_product_index_price_bundle_opt_tmp | 没有数据 | catalog_product_index_price_bundle_sel_idx …

1
如何优化图像加载所有类别
现在,我有两个嵌套的foreach可以遍历所有类别,而且速度非常慢(本地服务器上为3-4秒)。我认为问题是我使用-> LOAD()来获取子类别的图像路径。还有其他方法吗?还是我应该重新设计整个导航ui?有什么建议吗? $categories = Mage::getSingleton('catalog/category') ->getCollection() ->addAttributeToSelect('id') ->addAttributeToSelect('name') ->addAttributeToSelect('url_key') ->addAttributeToSelect('url') ->addAttributeToFilter('level',2) ->addIsActiveFilter() ->addAttributeToSort('position'); foreach ($categories as $category): $id = $category->getId(); $children = $category->getChildrenCategories(); $name = $category->getName(); $url_path = $category->getUrl(); foreach ($children as $child): $childId = $child->getId(); $thisChild = Mage::getSingleton('catalog/category')->load($childId); $name = $thisChild->getName(); $url_key = $thisChild->getUrlKey(); $url_path = $child->getUrl(); $img = …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.