PHP - Query single value per iteration or fetch all at start and retrieve from array?

后端 未结 3 422
感动是毒
感动是毒 2020-12-20 17:12

I have a function that looks something like this:

//iteration over scales
foreach ($surveyScales as $scale)
{
    $surveyItems = $scale->findDependentRows         


        
3条回答
  •  我在风中等你
    2020-12-20 17:48

    One query that returns a dozen pieces of data is almost 12x faster than 12 queries that return 1 piece of data.

    Oh, and NEVER EVER NEVER put a SQL inside a loop, it will always lead in a disaster.

    Depending on how your app works, a new connection might be opened for each query, this is especially bad as every DB server has a limit on the number of connections. Then also realize this will happen for each user, so 50 queries with 5 users and you already have 250 queries at any given moment. But even if all the queries do share just 1 connection, you're taxing the DB server X times more, slowing it down for everything else, every page, because users are hogging the DB server on this page, and everybody has to share.

    I've seen an entire application fail in the past because of this 1 design flaw, just don't do it.

提交回复
热议问题