This could be due to the cache of the data itself, and not the query cache.
To make sure, you can disable the query cache for a single statement by adding SQL_NO_CACHE after your SELECT statement.
Ex:
SELECT SQL_NO_CACHE field FROM table.
This could be due to the cache of the data itself, and not the query cache.
To make sure, you can disable the query cache for a single statement by adding SQL_NO_CACHE after your SELECT statement.
Ex:
SELECT SQL_NO_CACHE field FROM table.