How does query caching in MySQL works and how to find find out my MySQL query cache is working or not?

by LinuxTitli · 4 comments

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.

Featured Articles:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 4 comments… read them below or add one }

1 Dylan 04.03.06 at 6:40 pm

Thanks this is helpful.
Also, if you want to disable the caching how would you do this?
Thanks

2 nixcraft 04.04.06 at 12:16 am

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.

3 vikram 09.26.08 at 10:19 pm

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

4 vikram 09.26.08 at 10:21 pm

sorry my queries are not getting cached
so how to cache this kind of queries ….?

SELECT round(sum(i.withdrawrealwin)) FROM invoice

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous post:

Next post: