エンタープライズ1.14.1スウォッチにより、35秒に加えて、カテゴリページでの読み込み時間が発生する


23

最新の新しいサイトビルドに新しい組み込みスウォッチ機能を実装しました。カテゴリページでスウォッチを有効にすると、ページの読み込み時間が2秒から38秒になります。

他の誰かがこの問題を抱えていたのか、もしそうなら可能な解決策を示すことができたらと思っていましたか?

EE 1.14.1およびCE 1.9.1を、標準のrwdテーマにスウォッチが適用され、他のモジュールがアクティブになっていない36個の構成可能な製品で試しました。

この問題は、ユーザーがカテゴリを検索またはフィルタリングするたびにページが再び停止するようにキャッシュすることで解決できません。


これを再現できません。インストールされているプラ​​グインのタイプ、テーマなどについてさらに指示をください。テーマを無効にし、ローカルモジュールを無効にして再試行して、Magentoのデバッグプロセスに従ってください。
-philwinkle

使用している属性は、色見本で、アイテムごとに8以下、ほとんどの場合4以下です。これは、サンプルデータがロードされた空白のmagento CE 1.9.1インストールおよびカスタムスウォッチを含む10の構成可能製品で実行されます。追加されました。追加するほどサイトが遅くなるので、スウォッチと確実に関連付けられます。ユーザーが検索をフィルタリングできるため、これをテストするためにキャッシングがオフになっていることに注意してください。ユーザーが検索を微調整するたびにロード時間を狂わせることはできません。お時間をいただきありがとうございます:)
デイブベビントン

回答:


22

右。Mage_ConfigurableSwatches_Helper_Mediafallback :: attachConfigurableProductChildrenAttributeMapping関数で問題を検出しました。

私はそれにいくつかの変更を加えます。これによりパフォーマンスが向上します。

試してください:

  1. にコピー/app/code/core/Mage/ConfigurableSwatches/Helper/Mediafallback.php/app/code/local/Mage/ConfigurableSwatches/Helper/Mediafallback.phpます。

  2. 上の/app/code/local/Mage/ConfigurableSwatches/Helper/Mediafallback.phpファイルを移動し、このコードを(ll.88-91)

     // normalize to all lower case before we start using them
     $optionLabels = array_map(function ($value) {
      return array_map('Mage_ConfigurableSwatches_Helper_Data::normalizeKey', $value);
     }, $optionLabels);

    foreachループの前まで。

変更されたメソッドは次のとおりです。

 /**
 * Set child_attribute_label_mapping on products with attribute label -> product mapping
 * Depends on following product data:
 * - product must have children products attached
 *
 * @param array $parentProducts
 * @param $storeId
 * @return void
 */
public function attachConfigurableProductChildrenAttributeMapping(array $parentProducts, $storeId)
{
    $listSwatchAttr = Mage::helper('configurableswatches/productlist')->getSwatchAttribute();

    $parentProductIds = array();
    /* @var $parentProduct Mage_Catalog_Model_Product */
    foreach ($parentProducts as $parentProduct) {
        $parentProductIds[] = $parentProduct->getId();
    }

    $configAttributes = Mage::getResourceModel('configurableswatches/catalog_product_attribute_super_collection')
        ->addParentProductsFilter($parentProductIds)
        ->attachEavAttributes()
        ->setStoreId($storeId)
    ;

    $optionLabels = array();
    foreach ($configAttributes as $attribute) {
        $optionLabels += $attribute->getOptionLabels();
    }

    // normalize to all lower case before we start using them
    $optionLabels = array_map(function ($value) {
        return array_map('Mage_ConfigurableSwatches_Helper_Data::normalizeKey', $value);
    }, $optionLabels);

    foreach ($parentProducts as $parentProduct) {
        $mapping = array();
        $listSwatchValues = array();

        /* @var $attribute Mage_Catalog_Model_Product_Type_Configurable_Attribute */
        foreach ($configAttributes as $attribute) {
            /* @var $childProduct Mage_Catalog_Model_Product */
            if (!is_array($parentProduct->getChildrenProducts())) {
                continue;
            }

            foreach ($parentProduct->getChildrenProducts() as $childProduct) {

                // product has no value for attribute, we can't process it
                if (!$childProduct->hasData($attribute->getAttributeCode())) {
                    continue;
                }
                $optionId = $childProduct->getData($attribute->getAttributeCode());

                // if we don't have a default label, skip it
                if (!isset($optionLabels[$optionId][0])) {
                    continue;
                }

                // using default value as key unless store-specific label is present
                $optionLabel = $optionLabels[$optionId][0];
                if (isset($optionLabels[$optionId][$storeId])) {
                    $optionLabel = $optionLabels[$optionId][$storeId];
                }

                // initialize arrays if not present
                if (!isset($mapping[$optionLabel])) {
                    $mapping[$optionLabel] = array(
                        'product_ids' => array(),
                    );
                }
                $mapping[$optionLabel]['product_ids'][] = $childProduct->getId();
                $mapping[$optionLabel]['label'] = $optionLabel;
                $mapping[$optionLabel]['default_label'] = $optionLabels[$optionId][0];
                $mapping[$optionLabel]['labels'] = $optionLabels[$optionId];

                if ($attribute->getAttributeId() == $listSwatchAttr->getAttributeId()
                    && !in_array($mapping[$optionLabel]['label'], $listSwatchValues)
                ) {
                    $listSwatchValues[$optionId] = $mapping[$optionLabel]['label'];
                }
            } // end looping child products
        } // end looping attributes


        foreach ($mapping as $key => $value) {
            $mapping[$key]['product_ids'] = array_unique($mapping[$key]['product_ids']);
        }

        $parentProduct->setChildAttributeLabelMapping($mapping)
            ->setListSwatchAttrValues($listSwatchValues);
    } // end looping parent products
}

リストページで有効になっているスウォッチで同じ問題が発生していました。これにより、処理速度が大幅に向上しました。
マーロンクリエイティブ

同じ問題が見つかりました。これを解決するには、ページのロードに2.5分から7秒かかりました。
アンドリューケット

これらの見本は、特に多くの構成可能な製品がある場合、カテゴリを本当に遅くします。АндрейМのソリューション。構成可能な製品でいっぱいのカテゴリで負荷を10秒から3秒に削減します!ありがとうございました!
user1895954

+1!これを共有してくれてありがとう。我々はいくつかのオプションそれぞれ、ちょうどもう色見本を使うことができませんでした...と、設定の多くを使用している
マルク・

+1!読み込み時間は28秒から3秒に変更されました。ありがとうございました!!
KI

4

多くの属性オプションがある場合にパフォーマンス設定可能なスウォッチを改善する追加の方法。

たとえば、2000個のオプションがあり、カタログリストに36個の製品が表示されている場合、この場合、メソッドMage_ConfigurableSwatches_Model_Resource_Catalog_Product_Attribute_Super_Collection::_loadOptionLabels()は各super_attributesオプションラベルに結合し、2000 * 36 = 72000行を取得します。

このメソッドを書き直しましたが、72000ではなく2000行しかロードしません。

<?php
/**
 * Load attribute option labels for current store and default (fallback)
 *
 * @return $this
 */
protected function _loadOptionLabels()
{
    if ($this->count()) {
        $labels = $this->_getOptionLabels();
        foreach ($this->getItems() as $item) {
            $item->setOptionLabels($labels);
        }
    }
    return $this;
}

/**
 * Get Option Labels
 *
 * @return array
 */
protected function _getOptionLabels()
{
    $attributeIds = $this->_getAttributeIds();

    $select = $this->getConnection()->select();
    $select->from(array('options' => $this->getTable('eav/attribute_option')))
        ->join(
            array('labels' => $this->getTable('eav/attribute_option_value')),
            'labels.option_id = options.option_id',
            array(
                'label' => 'labels.value',
                'store_id' => 'labels.store_id',
            )
        )
        ->where('options.attribute_id IN (?)', $attributeIds)
        ->where(
            'labels.store_id IN (?)',
            array(Mage_Catalog_Model_Abstract::DEFAULT_STORE_ID, $this->getStoreId())
        );

    $resultSet = $this->getConnection()->query($select);
    $labels = array();
    while ($option = $resultSet->fetch()) {
        $labels[$option['option_id']][$option['store_id']] = $option['label'];
    }
    return $labels;
}

/**
 * Get Attribute IDs
 *
 * @return array
 */
protected function _getAttributeIds()
{
    $attributeIds = array();
    foreach ($this->getItems() as $item) {
        $attributeIds[] = $item->getAttributeId();
    }
    $attributeIds = array_unique($attributeIds);

    return $attributeIds;
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.