This page is original PmaControl documentation. It keeps a practical index structure for MySQL optimization work, without copying third-party content or depending on an external product.
Role
The query cache is a historical feature. It can speed up some repeated reads, but it introduces strong contention on modern write-heavy workloads.
Related Variables
query_cache_typequery_cache_sizequery_cache_limitquery_cache_min_res_unit
Recommendation
On MySQL 5.7, disabling it is often preferable for concurrent applications. On MySQL 8, it no longer exists. If an old platform still uses it, measure hits, invalidations, and waits before deciding.
SHOW VARIABLES LIKE 'query_cache%';
SHOW GLOBAL STATUS LIKE 'Qcache%';