Few days back I wrote about how to improve performance with query caching in MySQL. Someone email me about more questions.
How does query caching in MySQL helps improve performance of dynamic web site?
First query cache is new and added in MySQL v4.x.x version only so if you are using old version of MySQL server it will not work.
When MySQL server recives a request it will parse it and retrives data from database/table and sent back to client browser. If same query request (in case of dynamic content) comes repeatedly and server will just sent them result from cache (thus saving disk I/O and other associated cost with each query).
Please note that when data stored in table is modified, any related cached entries in the query cache are flushed.
How do I find out my MySQL query cache is working or not...
Very simple, MySQL provides the stats of same just type following command at mysql> prompt:
mysql> show status like 'Qcache%';
Output:
+-------------------------+----------+ | Variable_name | Value | +-------------------------+----------+ | Qcache_free_blocks | 1 | | Qcache_free_memory | 16766912 | | Qcache_hits | 3 | | Qcache_inserts | 1 | | Qcache_lowmem_prunes | 0 | | Qcache_not_cached | 6 | | Qcache_queries_in_cache | 1 | | Qcache_total_blocks | 4 | +-------------------------+----------+
For more information see the MySQL Query Cache documentation.
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop











{ 5 comments… read them below or add one }
Thanks this is helpful.
Also, if you want to disable the caching how would you do this?
Thanks
A value of 0 or OFF (in config file) prevents caching or retrieval of cached results i.e. disable the caching type following command as mysql admim:
mysql> SET GLOBAL query_cache_size = 0;
Or open my.cnf remove query_cache_size variable or set it to zero.
my queries like SELECT round(sum(i.withdrawrealwin)) FROM invoice are getting cached and it is taking 3 secs time to execute a query and i want to reduce to 1 secs , so how can i do this…
waiting for ur replay
thanks and regards
sorry my queries are not getting cached
so how to cache this kind of queries ….?
SELECT round(sum(i.withdrawrealwin)) FROM invoice
Vikram, queries like those typically can’t be cached. The use of functions (especially aggregation functions like SUM() and AVG(), as well as functions that are non-deterministic like NOW()) often preclude query caching because the output of such a query is different each time it is run. If you have no choice but to use those functions, then start looking at your index usage.