Hello,
On a fresh installed wordpress, I checked Query Cache by show variables like 'query_cache_%' ;
+------------------------------+--------+
| Variable_name | Value |
+------------------------------+--------+
| query_cache_limit | 131072 |
| query_cache_min_res_unit | 4096 |
| query_cache_size | 0 |
| query_cache_strip_comments | OFF |
| query_cache_type | OFF |
| query_cache_wlock_invalidate | OFF |
+------------------------------+--------+
6 rows in set (0.001 sec)
It seems not the default setting since query_cache_size is 0, and query_cache_limit is 131072, but not the default value of 1048576.
SHOW STATUS LIKE 'Qcache%';
+-------------------------+-------+
| Variable_name | Value |
+-------------------------+-------+
| Qcache_free_blocks | 0 |
| Qcache_free_memory | 0 |
| Qcache_hits | 0 |
| Qcache_inserts | 0 |
| Qcache_lowmem_prunes | 0 |
| Qcache_not_cached | 0 |
| Qcache_queries_in_cache | 0 |
| Qcache_total_blocks | 0 |
+-------------------------+-------+
8 rows in set (0.001 sec)
All of value is 0.
So, what is default configuration value in Wordops, is there anything wrong setting with my site?
If yes, any way to fix it or update the configurations?
Thanks