1

私のページに大きな問題があると思うので、カタログページ用のmagentoの標準インストールでのdbクエリの正しい平均数を知りたいです。

私のカタログ ページは約 2000 のクエリを実行します。これは多すぎるため、私のページが非常に遅い理由だと思います。

さらに、magento ツールバー (右上) を開いてクエリのテーブルを開くと、次のようなクエリが何度も実行されていることがわかります。

SELECT `eav_attribute_set`.* FROM `eav_attribute_set` WHERE (eav_attribute_set.attribute_set_id='10') 

そして、それはループのようです。

ここで、問題を見つけなければなりません。拡張機能やカスタム コードが間違っている可能性がありますが、カタログ ページの適切なクエリ数はどれくらいでしょうか?

4

1 に答える 1

1

Tim Hofman's answer (with wee-developer toolbar installed) was very useful to understand which queries were bad coded by developer before me.

Almost all these queries were load() to retrieve the full product when needed only one product's attribute, so i edited the code.

thx for replies! :)

于 2012-08-08T07:08:16.780 に答える