php - Basic mysql optimizations -
i'm new mysql. hit scaling problem queries taking as 15 seconds solve on simulations when added 7k accounts.
7k isn't much. so, got few questions.
what tradeoff between making 1 big query database (multiple joins reqd) , multiple smaller queries(which require no joins)?
also, (this basic) select *
work slower select <column>
because more columns returned caller (php)?
thanks.
Comments
Post a Comment