Re: Running Amazingly Slow Of PHP Queries Against MySQL
On Nov 4, 10:58 pm, "DarkPilg...@gmail.com" <DarkPilg...@gmail.com>
wrote:
> I found the problem now. Ur...
> I didn't enale query_cache(query_cache_size=0)
> Ha.Anyway, I'm not familiar with MySQL configuration( fine tuning)
Good job figuring out your issue!
Hopefully a helpful reminder: If you're executing the same query 3000
times, you might benefit from using a prepared statement. You can
prepare the statement outside of the loop, and then loop through 3000
times binding new values and executing the statement.
Good luck. :)
|