Posted by ZeldorBlat on 10/22/06 20:50
maxdamage wrote:
> Well, I was wondering if it would be better to do a series of smaller
> queries (about 5 - 10) and use less overhead on the PHP end or do one
> big querry that would fill a huge array (maybe 50x10) and use a ton of
> overhead.
One big query. Trips to the database are generally expensive and a 50
x 10 array isn't very big at all. If all else fails, try the two and
see which performs better.
[Back to original message]
|