Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーが同一の PHP ファイルを実行した場合。
MySQL クエリはどのような順序で実行されますか? こんな感じですか?
file-to-file(collect the query/by file) Q1-Q2-Q3,Q1-Q2-Q3
また
time-to-time(according who executed first/by time) Q1,Q1,Q2,Q2,Q3,Q3
それは基本的に時々です...先着順のように。
もう 1 つの興味深い点は、システムに複数のユーザーがいる場合、複数の php インスタンスが実行されていることです。php-mysql ドライバーはこれらすべてを処理し、各インスタンスを並行して実行します。もちろん、単一インスタンスの場合、システムは先着順でジョブ (クエリ) のリストを維持します。
:)