What are the differences between mysql Cache and Buffer?
The differences between mysql Cache and Buffer are: 1. Buffer is used to buffer block devices and only records the metadata of the file system, while cached is used to buffer files; 2. Buffer is used to store what is in the directory. Content, permissions, etc., while cached is used to remember open files.
The difference between mysql Cache and Buffer is:
The core function of Buffer
is to Cushioning, softening impact. For example, if you have to write to the hard disk 100 times per second, it will have a great impact on the system and waste a lot of time busy processing the two things of starting and ending writing. Use a buffer to temporarily store it and write to the hard disk every 10 seconds. The impact on the system is very small, the writing efficiency is high, and your life is comfortable. Greatly softened the impact.
The core function of Cache
is to speed up access. For example, if you have finished a very complicated calculation and want to use the results next time, just keep the results in an easy-to-reach place so that you don't have to calculate them again next time. Speeds up data retrieval.
So, if you pay attention to the storage system, you will find that the read and write buffer/cache names of the hard disk are different, called write-buffer
and read-cache
. The difference between the two is clearly stated.
Of course, in many cases, the two may be mixed at a macro level. For example, many people actually use memcached for both reading and writing. Many times the same is true for Non-SQL databases. Strictly speaking, the L2 and L3 Cache in the CPU are also used for both reading and writing - because you cannot simply define whether the CPU uses them to read or write. The hard disk is also a typical example. The buffer and cache are both in the same space. Is it the buffer or the cache?
But think about it carefully, is it okay to use cache as a buffer? Of course, as long as the cache eviction logic can be controlled, there will be no problem.
So what about using the buffer as a cache? It seems that in very special circumstances, when the access sequence can be determined, it is also possible. Just think about it and you will understand - by definition, does the buffer need to be stored randomly? Generally not needed. But cache must be. So most of the time it is OK to use cache instead of buffer, but vice versa is more limiting. This is also technically the key difference between cache and buffer.
Supplement 1:
Don’t misunderstand that Buffer is for writing, and Cache is for reading. Can I use Buffer for reading? Of course you can. For example, if you want to process reads in batches instead of processing them all, you can use the read buffer. Of course, you can also use cache when writing, for example, when your writes are highly random. Which scenario uses Buffer and which scenario uses Cache depends on the specific needs of the scenario.
Supplement 2:
Don’t misunderstand that Cache or Buffer must be memory or something that exists on high-speed media. As long as it's relatively high speed. I can definitely store a cache on the hard disk. For example, some games will create precompiled shaders at runtime (exposing their age). This is essentially a cache that exists on a slow hard disk, because reading the hard disk is still faster than recompiling. quick. The same is true for Buffers. For example, the NTFS file system has its own Logging Buffer, which even explicitly refuses to be placed in any volatile cache.
Related learning recommendations: mysql video tutorial
The above is the detailed content of What are the differences between mysql Cache and Buffer?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The thing is actually like this. At that time, my leader gave me a perf hardware performance monitoring task. During the process of using perf, I entered the command perf list and I saw the following information: My task is to enable these cache events to be counted normally. But the point is, I have no idea what these misses and loads mean.

Using the cache can increase the speed of the computer because the cache shortens the waiting time of the CPU. Cache is a small but high-speed memory located between the CPU and the main memory DRAM. The function of Cache is to increase the rate of CPU data input and output; Cache has a small capacity but fast speed, while the memory speed is low but has a large capacity. By optimizing the scheduling algorithm, the performance of the system will be greatly improved.

Cache is called cache memory. It is a high-speed small-capacity memory between the central processing unit and the main memory. It is generally composed of high-speed SRAM. This kind of local memory is oriented to the CPU. It is introduced to reduce or eliminate the gap between the CPU and the memory. The impact of the speed difference between them on system performance. Cache capacity is small but fast, memory speed is low but capacity is large. By optimizing the scheduling algorithm, the performance of the system will be greatly improved.

Preface Caching can effectively improve system performance and stability by storing frequently accessed data in memory, reducing the pressure on underlying data sources such as databases. I think everyone has used it more or less in their projects, and our project is no exception. However, when I was reviewing the company's code recently, the writing was very stupid and low. The rough writing is as follows: publicUsergetById(Stringid){Useruser=cache. getUser();if(user!=null){returnuser;}//Get user from the database=loadFromDB(id);cahce.put(id,user);returnu

5 options for nginx caching cache 1. One of the traditional caches (404) This method is to direct the 404 error of nginx to the backend, and then use proxy_store to save the page returned by the backend. Configuration: location/{root/home/html/;#Home directory expires1d;#Expiration time of the web page error_page404=200/fetch$request_uri;#404 directed to the /fetch directory} Location/fetch/{#404 directed here internal ;#Indicates that this directory cannot be directly accessed externally

Here is the tutorial for nginx reverse proxy caching: Install nginx: sudoaptupdatesudoaptinstallnginx Configure reverse proxy: Open nginx configuration file: sudonano/etc/nginx/nginx.conf Add the following configuration in the http block to enable caching: http{...proxy_cache_path /var/cache/nginxlevels=1:2keys_zone=my_cache:10mmax_size=10ginactive=60muse_temp_path=off;proxy_cache

Characteristics of cache: A one- or two-level high-speed, small-capacity memory set between the CPU and the main memory. The information is naturally lost when the computer is powered off. Characteristics of ROM: it can only read data from the memory, but cannot write information into it. The data will still exist after the computer is powered off. Characteristics of ram: it can read data from the memory and write information to the memory; it is used to store commands, programs and data required to run the program; information is naturally lost when the computer is powered off.

The details are as follows: 1. Let’s talk about what is hard-coded cache? Before learning SpringCache, I often used caching in a hard-coded way. Let's take a practical example. In order to improve the query efficiency of user information, we use caching for user information. The sample code is as follows: @AutowireprivateUserMapperuserMapper; @AutowireprivateRedisCacheredisCache;//Query users publicUsergetUserById(LonguserId){//Define cache keyStringcacheKey= "userId_
