[5.x]: Asset::getSrcset takes too many database queries
まだ誰も着手していません。
- 主要言語
- PHP
- スター
- 3.6k
- フォーク
- 705
- 平均マージ
- 1日 5時間
- マージ済み PR(30日)
- 134
説明
What happened?
Description
I'm investigating some performance issues with the MySQL server, so I'm trying to reduce the number of database queries required for a page load, especially on a cold cache, because that's where most of the problems occur.
I found that the single largest source for the query count is Asset::getSrcset(). This uses a separate database query for every single size. In fact, I found that every single size takes two database queries. With 5 transforms in two formats (WebP and AVIF), we get 20 database queries for a single image! And that's just for the srcset, there are additional queries for the base transform.
Steps to reproduce
- Where
imageis anAsset, useimage.getSrcset([240, 360, 480, 600, 720, 840, 960])and watch the number of database queries in the debug panel as the number of sizes is increased.
Expected behavior
Asset::getSrcset() should group its queries to avoid the N+1 (or rather, N+2) problem here. All transforms should be loaded in a single query, adding more sizes should not result in additional database queries for each one.
Actual behavior
The number of database queries grows exponentially at an alarming rate with the number of images on a page, and transforms per image.
Craft CMS version
5.8.6
PHP version
8.3
Operating system and version
No response
Database type and version
No response
Image driver and version
No response
Installed plugins and versions
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
Asset::getSrcset() から始め、デバッグパネルのデータベースクエリ数を確認しながら、記載されたサイズで問題を再現します。各 transform size がどのように読み込まれるかを追跡し、その後、すべての transform が単一のクエリで読み込まれること、およびサイズを追加してもサイズごとにクエリが追加されなくなっていることを確認します。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- mysql, php
- 領域
- backend, databases, performance
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 45/100