You can add SQL_NO_CACHE in your queries to request that MySQL execute the query and not return the cached result:
SELECT SQL_NO_CACHE * FROM myTable;
Edit:
There is another way to use dong if you have access to configurations
setting query_cache_type = 0 or query_cache_type = OFF in MySQL conf
source share