hi there,
some of the queries I'm doing involve joining 8-10+ tables with 10-20,000 records in them. I'm good about indexing but I've had some queries which annoyingly take 10,20 even 100 seconds.
I'm using phpMyAdmin.
Generally what I do is build the query up table by table to see where things begin to slow down. HOWEVER, there is a problem - caching
A query that took 9.58 seconds a moment ago might take .043 seconds a moment later - I assume because of caching where mysql determines nothing has changed.
How do I stop caching (and I hope that's the right phrase)? So that I know each time the "true" time a query is going to take to assemble. THANK YOU, I really appreciate it.
Sam