Y
Hacker News
new
|
ask
|
show
|
jobs
by
imron
98 days ago
Sometimes it’s still the app:
rows = select all accounts for each row in rows: update row
But that’s not necessarily a PHP problem. N+1 queries are everywhere.
1 comments
silon42
98 days ago
Depending on what you are doing, the above is not necessarily bad.. often much better than an SQL that locks an entire table (potentially blocking the whole DB, if this is one of the key tables).
link