Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpMyAdmin, is there a something you can add to sql to turn off caching for that query?

I'm trying to test / improve an sql query for speed however caching is not showing me the true speed.

Is there something I can add to sql to turn it off for that query ?

Also, if there isn't how else can I test and find the true speed ?

like image 866
Jules Avatar asked Oct 13 '22 17:10

Jules


1 Answers

You can add a SQL_NO_CACHE clause to your queries to request that MySQL run the query rather than return a cached result:

SELECT SQL_NO_CACHE * FROM myTable;

Edit:

There is another way of dong this if you have access to configurations

setting query_cache_type = 0 or query_cache_type = OFF in MySQL's conf
like image 180
Arshdeep Avatar answered Oct 18 '22 03:10

Arshdeep