search
HomeDatabaseMysql TutorialWhat 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.

What are the differences between mysql Cache and Buffer?

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!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
入职后,我才明白什么叫Cache入职后,我才明白什么叫CacheJul 31, 2023 pm 04:03 PM

事情其实是这样的,当时领导交给我一个perf硬件性能监视的任务,在使用perf的过程中,输入命令perf list,我看到了以下信息:我的任务就要让这些cache事件能够正常计数,但关键是,我根本不知道这些misses、loads是什么意思。

使用cache可以提高计算机运行速度这是因为什么使用cache可以提高计算机运行速度这是因为什么Dec 09, 2020 am 11:28 AM

使用cache可以提高计算机运行速度这是因为Cache缩短了CPU的等待时间。Cache是位于CPU和主存储器DRAM之间,规模较小,但速度很高的存储器。Cache的功能是提高CPU数据输入输出的速率;Cache容量小但速度快,内存速度较低但容量大,通过优化调度算法,系统的性能会大大改善。

cache是什么存储器?cache是什么存储器?Nov 25, 2022 am 11:48 AM

cache叫做高速缓冲存储器,是介于中央处理器和主存储器之间的高速小容量存储器,一般由高速SRAM构成;这种局部存储器是面向CPU的,引入它是为减小或消除CPU与内存之间的速度差异对系统性能带来的影响。Cache容量小但速度快,内存速度较低但容量大,通过优化调度算法,系统的性能会大大改善。

SpringBoot项目中怎么使用缓存CacheSpringBoot项目中怎么使用缓存CacheMay 16, 2023 pm 02:34 PM

前言缓存可以通过将经常访问的数据存储在内存中,减少底层数据源如数据库的压力,从而有效提高系统的性能和稳定性。我想大家的项目中或多或少都有使用过,我们项目也不例外,但是最近在review公司的代码的时候写的很蠢且low,大致写法如下:publicUsergetById(Stringid){Useruser=cache.getUser();if(user!=null){returnuser;}//从数据库获取user=loadFromDB(id);cahce.put(id,user);returnu

Nginx缓存Cache的配置方案及相关内存占用问题怎么解决Nginx缓存Cache的配置方案及相关内存占用问题怎么解决May 23, 2023 pm 02:01 PM

nginx缓存cache的5种方案 1、传统缓存之一(404)  这个办法是把nginx的404错误定向到后端,然后用proxy_store把后端返回的页面保存。  配置:  location/{  root/home/html/;#主目录  expires1d;#网页的过期时间  error_page404=200/fetch$request_uri;#404定向到/fetch目录下  }  location/fetch/{#404定向到这里  internal;#指明这个目录不能在外部直接访

nginx反向代理缓存教程。nginx反向代理缓存教程。Feb 18, 2024 pm 04:48 PM

以下是nginx反向代理缓存的教程:安装nginx:sudoaptupdatesudoaptinstallnginx配置反向代理:打开nginx配置文件:sudonano/etc/nginx/nginx.conf在http块中添加以下配置来启用缓存:http{...proxy_cache_path/var/cache/nginxlevels=1:2keys_zone=my_cache:10mmax_size=10ginactive=60muse_temp_path=off;proxy_cache

cache、rom、ram的特点是什么cache、rom、ram的特点是什么Aug 26, 2022 pm 04:05 PM

cache的特点:在CPU与主存储器之间设置的一个一级或两级高速小容量存储器,其信息是随着计算机的断电自然丢失。ROM的特点:只能从存储器中读数据,而不能往里写信息,计算机断电后数据仍然存在。ram的特点:既可以从存储器中读数据,也可以往存储器中写信息;用于存放运行程序所需的命令、程序和数据等;计算机断电后信息自然丢失。

基于Spring Cache如何实现Caffeine+Redis二级缓存基于Spring Cache如何实现Caffeine+Redis二级缓存Jun 01, 2023 am 10:13 AM

具体如下:一、聊聊什么是硬编码使用缓存?在学习SpringCache之前,笔者经常会硬编码的方式使用缓存。我们来举个实际中的例子,为了提升用户信息的查询效率,我们对用户信息使用了缓存,示例代码如下:@AutowireprivateUserMapperuserMapper;@AutowireprivateRedisCacheredisCache;//查询用户publicUsergetUserById(LonguserId){//定义缓存keyStringcacheKey="userId_

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version