TECHIES WORLD

For Techs.... Techniques.... Technologies....

CpanelLinuxMysql

How to clear MySQL query cache without restarting service

MySQL query cache will be cleared on restarting the service. But its not the right way to restart MySQL to clear query cache each time.

We can clear the cache using the following MySQL query and its not require the service to restart.

RESET QUERY CACHE;

That's all…

Leave a Reply