数据库缓冲池_块缓冲| 数据库管理系统

数据库缓冲池

When several blocks need to be transferred from disk to main memory and all the block addresses are known, several buffers can be reserved in main memory to speed up the transfer.

当需要将几个块从磁盘传输到主存储器并且所有块地址已知时,可以在主存储器中保留几个缓冲区以加快传输速度。

When one buffer is being used for reading or writing, at that time the CPU can process data in the other buffer because an independent disk (I/O) processor (controller) exists when once it started it can proceed to transfer a block of data between memory and disk independent of and in parallel to CPU processing.

当一个缓冲区用于读取或写入时,那时CPU可以处理另一缓冲区中的数据,因为一旦启动它就存在一个独立的磁盘(I / O)处理器(控制器),它就可以继续传输数据块在内存和磁盘之间独立于CPU处理并与之并行。

How two processed in parallel are shown in the following figure?

下图显示了如何并行处理两个?

Buffering of blocks

In the above figure Processes, A and B are running concurrently in an interleaved fashion whereas processes C and D are running concurrently in a parallel fashion.

在上图中,进程A和B以交错方式同时运行,而进程C和D以并行方式同时运行。

When single processes control multiple processes,parallel execution is not possible.

当单个进程控制多个进程时,无法并行执行。

However, the process can still run concurrently in an interleaved way. Buffering is most useful when processes can run concurrently in parallel fashion, either because a separate disk I/O processor is available or because multiple CPU processors exist.

但是,该过程仍可以以交错方式并发运行。 当进程可以并行方式并行运行时,缓冲是最有用的,这是因为可以使用单独的磁盘I / O处理器,或者因为存在多个CPU处理器。

The following figure basically illustrates how reading and processing can proceed in parallel when the time required to process a disk block in memory is less than the time required to read the next block and fill a buffer.

下图基本说明了在内存中处理磁盘块所需的时间少于读取下一个块并填充缓冲区所需的时间时,如何并行进行读取和处理。

Buffering of blocks 1

Processing of CPU starts when the transfer of a block of data to main memory is completed and at the same time next block where the disk I/O processor reading or writing will transfer this block to the different buffer.

当一个数据块到主存储器的传输完成时,CPU的处理开始,与此同时,磁盘I / O处理器读取或写入的下一个块会将这个块传输到另一个缓冲区。

This technique is basically known as Double Buffering and it is basically used to read a continuous stream of blocks of data from disk to memory.

这种技术基本上被称为双缓冲,并且基本上用于从磁盘到内存读取连续的数据块流。

Double Buffering permits continuous reading or writing of data on consecutive disk on consecutive disk blocks, which eliminates the seek time and rotational delay for all but the first block transfer.

Double Buffering允许连续读取或写入连续磁盘块上连续磁盘上的数据,从而消除了除了第一个块传输之外的所有磁盘的寻道时间和旋转延迟。

The most important thing in this is that the data is always ready for processing which helps in reducing the waiting time.

最重要的是,数据始终准备就绪,可以进行处理,这有助于减少等待时间。

翻译自: https://www.includehelp.com/dbms/buffering-of-blocks.aspx

数据库缓冲池

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/543867.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python公共变量_Python中的公共变量

python公共变量By default all numbers, methods, variables of the class are public in the Python programming language; we can access them outside of the class using the object name. 默认情况下,该类的所有数字,方法和变量在Python编程语言中…

递归如何书写?

目录 第一步:首先你分析问题,要有递归的思路,知道要递归什么来解决问题。 第二步:先按照思路(第一层)写出函数的定义与函数体 第三步:根据函数的定义与函数体进一步确定需要的参数 第四步&a…

kotlin 判断数字_Kotlin程序可以逆转数字

kotlin 判断数字Given an integer number, we have to find reverse number and print it. 给定一个整数,我们必须找到反向数字并打印出来。 Example: 例: Input:Number: 12345Output:Reverse Number: 54321To find a reverse number – we use this f…

Python | 创建员工类别

Python-员工类代码 (Python - employee class code) # employee class code in Python# class definitionclass Employee:__id0__name""__gender""__city""__salary0# function to set data def setData(self,id,name,gender,city,salary):self.…

scala 字段覆盖_Scala中的字段覆盖

scala 字段覆盖Scala字段覆盖 (Scala field overriding) Overriding is the concept in which the child class is allowed to redefine the members of the parent class. Both methods and variables/ fields can be overridden in object-oriented programming. In Scala as…

python 散点图 分类_Python | 分类图

python 散点图 分类Visualizing different variables is also a part of basic plotting. Such variables can have different classes, for example, numerical or a category. Matplotlib has an important feature of Categorical Plotting. We can plot multiple categoric…

python 对角线矩阵_Python | 矩阵的对角线

python 对角线矩阵Some problems in linear algebra are mainly concerned with diagonal elements of the matrix. For this purpose, we have a predefined function numpy.diag(a) in NumPy library package which automatically stores diagonal elements in an array (a V…

二叉树祖先节点_二叉树的祖先

二叉树祖先节点Problem statement: 问题陈述: Given a Binary Tree and a target key, write a function that prints all the ancestors of the key in the given binary tree. 给定二叉树和目标键,编写一个函数,以打印给定二叉树中键的所有…

txt文本变为粗体_如何在PHP中使文本变为粗体?

txt文本变为粗体Sometimes we might want to display text with style. That its font, color, make it bold, italic, underlined and many more. Adding whatever style is all based on the message that we want to pass across or getting someones attention. 有时我们可…

CALayer精讲

CALayer精讲 CALayer包含在QuartzCore框架中,这是一个跨平台的框架,既可以用在iOS中又可以用在Mac OS X中。后面要学Core Animation就应该先学好Layer(层)。 我们看一下UIView与Layer之间的关系图(图片来源于网络&…

VSRE的完整形式是什么?

VSRE:预期回复非常短 (VSRE: Very Short Reply Expected) VSRE is an abbreviation of "Very Short Reply Expected". VSRE是“ Very Short Reply Expected”的缩写。 It is an expression, which is commonly used in the Gmail platform. It is writte…

rofl用什么播放_ROFL的完整形式是什么?

rofl用什么播放ROFL:笑在地板上滚动 (ROFL: Rolling On Floor Laughing) ROFL is an abbreviation of Rolling on Floor Laughing. ROFL is a very trendy internet slang between youngsters and used in text messaging, instant messaging, chatting, and social…

为什么只有根桥发送bpdu_BPDU的完整形式是什么?

为什么只有根桥发送bpduBPDU:网桥协议数据单元 (BPDU: Bridge Protocol Data Unit) BPDU is an abbreviation of the "Bridge Protocol Data Unit". BPDU是“网桥协议数据单元”的缩写 。 It is a data message in the form of a frame that used to exc…

什么叫穷举法?

穷举法的基本思想是根据题目的部分条件确定答案的大致范围,并在此范围内对所有可能的情况逐一验证,直到全部情况验证完毕。若某个情况验证符合题目的全部条件,则为本问题的一个解;若全部情况验证后都不符合题目的全部条件&#xf…

gif 格式 完整 检查_GIF的完整格式是什么?

gif 格式 完整 检查GIF:图形交换格式 (GIF: Graphics Interchange Format) GIF is an abbreviation of Graphics Interchange Format. It is extensively used for animations and still images on the World Wide Web. The image is set out is bitmap image and i…

Java基础_05

2019独角兽企业重金招聘Python工程师标准>>> 1:boolean运算符号 || 与 | && 与 &的区别。 Equals与innstanceof 1:java中的方法。方法的定义,参数、返回值、调用方式。 2:方法调用与参数传递、Static方…

账单cbl_CBL的完整形式是什么?

账单cblCBL:基于计算器的实验室 (CBL: Calculator-Based Laboratory) CBL is an abbreviation of "Calculator-Based Laboratory". CBL是“基于计算器的实验室”的缩写 。 It is a mobile data collection based piece of equipment. The process of col…

Android Studio 之下载安装

2019独角兽企业重金招聘Python工程师标准>>> 目录[-] 背景Android Studio VS Eclipse下载创建HelloWorld项目背景 相信大家对Android Studio已经不陌生了,Android Studio是Google于2013 I/O大会针对Android开发推出的新的开发工具,目前很多开…

c#格式化字float_C#中的float关键字

c#格式化字floatC#float关键字 (C# float keyword) In C#, float is a keyword which is used to declare a variable that can store a floating point value between the range of 1.5 x 10−45 to 3.4 x 1038. float keyword is an alias of System.Single. 在C&…

模拟UIWebView

2019独角兽企业重金招聘Python工程师标准>>> // // ViewController.m // 模拟UIWebView // // Created by dc0061 on 15/12/10. // Copyright © 2015年 dc0061. All rights reserved. //#import "ViewController.h"interface ViewController ()&…