• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » The MySQL Query Cache For Page Speed Optimization

By Abhishek Ghosh January 5, 2020 8:28 pm Updated on January 5, 2020

The MySQL Query Cache For Page Speed Optimization

Advertisement

You’ll notice that our earlier guide on MySQL optimization disabled MySQL Query Cache. Various WordPress Plugins exist for database caching, which are different from the thing we are talking about. Our discussion demands to tweak my.cnf file which is usually located at /etc/my.cnf in case of Ubuntu, Debian etc distro. The WordPress plugins decrease the count of queries to the database by caching queries in temp files in the cache directory which is usually /wp-content/tmp/. In other words, to tweak this setting, first we need to run WordPress at minimum on a cheap VPS, like VPSdime or a standard server from BlueHoststandard server from BlueHost. The server does matter. A dedicated server with sufficient RAM and good hard disk will predictably translate the software settings when compared with a cheap virtual server or cloud server.

Regardless of the type of server (virtual server, cloud server, dedicated server), the properly configured query does improve the speed of page loading. The reason we kept the MySQL Query Cache settings in our earlier guide is for ensuring stability. A too much big query cache size will lead to performance degradation as there will be cache overhead and locking. The insert, update, delete modifications to a table will flush the query cache. In general, even a MySQL query cache size of 150 MB is too big. The MySQL query cache can be the bottleneck instead of helping when we have many CPU cores. For this reason, the MySQL query cache by default is now suggested to off unless proven useful for our need. So it is important to know that the MySQL query cache is on and the system can be unstable.

When the database storage engine is InnoDB, then you may try the query cache with this settings:

Advertisement

---

Vim
1
2
3
4
query_cache_type = 1
query_cache_limit = 256K
query_cache_min_res_unit = 2k
query_cache_size = 80M

Save the changes and restart MySQL :

Vim
1
service MySQL restart

Load some webpages on your website and wait for 5-15 minutes. Login to the MySQL command-line interface :

Vim
1
mysql -u root -p

Issue the following command :

Vim
1
SHOW STATUS LIKE "qcache%";

You’ll get a chart like this :

Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mysql> SHOW STATUS LIKE "qcache%";
+-------------------------+-----------+
| Variable_name           | Value     |
+-------------------------+-----------+
| Qcache_free_blocks      | 1         |
| Qcache_free_memory      | 101806856 |
| Qcache_hits             | 578       |
| Qcache_inserts          | 830       |
| Qcache_lowmem_prunes    | 0         |
| Qcache_not_cached       | 228       |
| Qcache_queries_in_cache | 745       |
| Qcache_total_blocks     | 1504      |
+-------------------------+-----------+
8 rows in set (0.00 sec)

The MySQL Query Cache For Page Speed Optimization

There are articles like this one and this one from Percona which you will help to work with Query Cache. Deactivate and uninstall the plugin after usage.

Tagged With mysql query_cache_size wordpress , mysql query cache optimizer , wordpress database query cache plugin , wordpress query_cache_size
Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to The MySQL Query Cache For Page Speed Optimization

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • Changing Data With cURL for OpenStack Swift (HP Cloud CDN)

    Changing Data With cURL For Object is Quite Easy in OpenStack Swift. Here Are Examples With HP Cloud CDN To Make it Clear. Official Examples Are Bad.

  • WordPress & PHP : Different AdSense Units on Mobile Devices

    Here is How To Serve Different AdSense Units on Mobile Devices on WordPress With PHP. WordPress Has Function Which Can Be Used In Free Way.

  • Enable MySQL Caching : Performance Trick For WordPress Like PHP-MySQL App

    We Have Shown How To Easily, Safely Enable MySQL Caching From my.cnf File. This Is A Huge Performance Trick For WordPress Like PHP-MySQL App.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • PowerAmp Settings for Higher Sound QualityOctober 4, 2023
  • Affordable Earphone/IEM for Audiophiles: HiFiMan RE-400 WaterlineOctober 2, 2023
  • What is Hardware Security Module (HSM)September 30, 2023
  • Transducer Technologies of HeadphonesSeptember 28, 2023
  • What is Analog-to-Digital Converter (ADC)September 27, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy