• 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 » Enable MySQL Caching : Performance Trick For WordPress Like PHP-MySQL App

By Abhishek Ghosh May 23, 2017 11:46 pm Updated on May 23, 2017

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

Advertisement

Those who fear to use MySQL from SSH, you can read this easy guide. In this guide we will show how to easily, safely enable MySQL caching from my.cnf file. This is a huge performance trick for WordPress like PHP-MySQL App. If you use Percona MySQL wizard, by default, the generated settings for my.cnf will use query_cache_type = 0 that is query cache is disabled. MySQL query cache is a cache mechanism that stores the text of the query and the result of the query into memory.

Enable MySQL Caching - Performance Trick For WordPress

 

Enable MySQL Caching Vs Enable Database Caching Via WordPress Plugin

 

Whatever WordPress Plugin you use for database caching that is different that the thing we are talking about. We are going to tweak my.cnf file which is usually located at /etc/mysql/my.cnf in case of Ubuntu, Debian etc distro. The WordPress plugins decreases count of queries to database by caching queries in temp files in cache directory which is usually wp-content/tmp/.

There are matters around this MySQL cache. Like in some conditions in this cache will not work like if multiple servers hitting to one query and matters which probably an ordinary user need not to know. Other thing is the limit in size. There is documentation on MySQL website around it :

Advertisement

---

Vim
1
https://dev.mysql.com/doc/refman/5.5/en/

In short, too much big query cache size definitely will lead to performance degradation as there will be cache overhead and locking. Plus those 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. One tenth of it practical, you can test and increase in increments to keep a balance from your practical frontend experience.

 

Enable MySQL Caching : Example

 

First take a database backup. Open your my.cnf file and find similar lines and add or modify like below :

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

Save the file, restart MySQL :

Vim
1
service mysql restart

Check your frontend. First time things will suck slight more time. Another end of example which can guide you to find a perfect point :

Vim
1
2
3
4
query_cache_type = 1
query_cache_size = 16M
query_cache_min_res_unit = 2k
query_cache_limit = 5M

We were talking about MySQL from SSH because you can run query like :

Vim
1
mysql> SHOW VARIABLES LIKE 'have_query_cache';

You’ll get output :

Vim
1
2
3
4
5
+------------------+-------+
| Variable_name    | Value |
+------------------+-------+
| have_query_cache | YES   |
+------------------+-------+

Check whether caching is working :

Vim
1
mysql> show variables like 'query%';

Output :

Vim
1
2
3
4
5
6
7
8
9
10
11
+------------------------------+---------+
| Variable_name                | Value   |
+------------------------------+---------+
| query_alloc_block_size       | 8192    |
| query_cache_limit            | 1048576 |
| query_cache_min_res_unit     | 4096    |
| query_cache_size             | 8388608 |
| query_cache_type             | ON      |
| query_cache_wlock_invalidate | OFF     |
| query_prealloc_size          | 8192    |
+------------------------------+---------+

Here, the important things in the list are :

  1. query_cache_size :  size of the cache in bytes. If this value is 0 that will effectively disable caching
  2. query_cache_type :  value must be ON or 1 for query caching to be enabled
  3. query_cache_limit : maximum size query (in bytes) to be cached.

 

We actually could run commands in this way :

Vim
1
2
3
mysql>SET GLOBAL query_cache_size = 8388608;
mysql>SET GLOBAL query_cache_limit = 1048576;
mysql>SET GLOBAL query_cache_type = 1;

8388608 is 1024 * 1024 * 8 = 8 MB.

 

Monitor performance by running :

Vim
1
2
3
mysql> SHOW STATUS LIKE 'Qcache%';
# or
mysql> SHOW STATUS LIKE 'Qc%';

and get this kind of output :

Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
+-------------------------+--------+
| Variable_name           | Value  |
+-------------------------+--------+
| Qcache_free_blocks      | 65     |
| Qcache_free_memory      | 201440 |
| Qcache_hits             | 18868  |
| Qcache_inserts          | 2940   |
| Qcache_lowmem_prunes    | 665    |
| Qcache_not_cached       | 246    |
| Qcache_queries_in_cache | 492    |
| Qcache_total_blocks     | 1430   |
+-------------------------+--------+
8 rows in set (0.00 sec)

Tagged With mysql cache , paperuri:(fa240ad77972acd49c6b4c10f5456e46) , apply query cache in wordpress , Database Caching , database caching for wordpress , query_cache_size wordpress , wordpress mysql query_cache_size , wordpress query cache mysql

This Article Has Been Shared 526 Times!

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 Enable MySQL Caching : Performance Trick For WordPress Like PHP-MySQL App

  • Adding Schema.org Structured Data in Genesis Theme

    Adding Schema.org Structured Data in Genesis Theme without using any plugin is quite easy as Genesis has great documentation and has excellent existing markups.

  • How to Use Google Data Highlighter and Other Points

    How to Use Google Data Highlighter has been shown as a detailed guide video to tag a set of webpages who can not relate them by HTML tagging. But it has flaws.

  • WordPress Lost Post Recovery Options on Cloud

    WordPress Lost Post Recovery Options Are Not Less in Number on Cloud, Even Without Backup Failure. If Your FTP Server is Running, Data Can Be Recovered.

  • Real Time Widgets in WordPress with WebSocket

    WebSocket is a Protocol which has PHP library for serving real-time messages between clients and server which opens the possibility to use with WordPress.

  • Disabling XMLRPC, SMTP on WordPress For Security

    WordPress is NOT a secured Web Software by Default. On Cloud Computing Platforms Disabling XMLRPC, SMTP on WordPress For Security is Important.

Additionally, 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

  • What is an Automatic Ethanol Fireplace February 8, 2023
  • Disadvantages of Cloud-Native Computing February 7, 2023
  • Projector Screen Basics February 6, 2023
  • What is Configuration Management February 5, 2023
  • What is ChatGPT? February 3, 2023

About This Article

Cite this article as: Abhishek Ghosh, "Enable MySQL Caching : Performance Trick For WordPress Like PHP-MySQL App," in The Customize Windows, May 23, 2017, February 8, 2023, https://thecustomizewindows.com/2017/05/enable-mysql-caching-performance-trick-wordpress-like-php-mysql-app/.

Source:The Customize Windows, JiMA.in

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

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT