《Operating System Concepts》阅读笔记:p764-p766

《Operating System Concepts》学习第 66 天,p764-p766 总结,总计 3 页。

一、技术总结

1.cache-update policy

(1)write-through policy

In caching, a policy whereby writes are not cached but are written through the cache to the master copy of the data.

缺点:However, this policy requires each write access to wait until the information is sent to the server, so it causes poor write performance.

(2)write-back(delayed-write policy)

In caching, a policy whereby data are first written to a cache; later, the cache writes the change to the master copy of the data.

缺点:Unfortunately, delayed-write schemes introduce reliability problems, since unwritten data are lost whenever a user machine crashes.

(3)write-on-close policy

In caching, a policy whereby writes reside in the cache until the file is closed and are only then written back to the master copy of the data.

二、英语总结(生词:2)

1.replication

(1)replicate:re-("again") + plicare("to fold")

vi/vt. replicate literally means "to fold back", overtime, it evolves to mean "to make or do sth again(复现)"。

(2)replication

c/u. the act of making or doing sth again。

(3)示例

To enhance the availability of the crucial mapping information, we can use replication, local caching, or both(《Operating System Concepts》第 764 页)。

2.granularity

(1)granularity: gran("grain,颗粒") + -ul(a diminutive suffix, "small") + -ity(a noun suffix, "quality of")

u. the quality of including a lot of small details(粒度)。

(2)示例

The granularity of the cached data in a DFS can vary from blocks of a file to an entire file(《Operating System Concepts》第 765 页)。

关于英语的注解同步更新汇总到 https://github.com/codists/English-In-CS-Books 仓库。

三、其它

今天没有什么想说的。

四、参考资料

1. 编程

(1) Abraham Silberschatz,Peter Baer Galvin,Greg Gagne《Operating System Concepts》:https://book.douban.com/subject/30272539/

2. 英语

(1) Etymology Dictionary:https://www.etymonline.com

(2) Cambridge Dictionary:https://dictionary.cambridge.org

欢迎搜索及关注:编程人(a_codists)

相关推荐
燃于AC之乐9 小时前
【Linux系统编程】进程控制完全指南:从fork创建、优雅终止到进程等待的全面解析
linux·操作系统·进程控制·进程创建·进程等待·进程终止·fork函数
Trouvaille ~1 天前
【Linux】Linux线程概念与控制(四):glibc源码剖析与实现原理
linux·运维·服务器·c++·操作系统·glibc·线程控制
_OP_CHEN1 天前
【Linux系统编程】(二十四)深入 Ext2 块组内部:inode、数据块与目录的底层工作机制
linux·操作系统·文件系统·c/c++·inode·块组·数据块映射
番茄灭世神2 天前
Linux从入门到进阶第一章
linux·计算机·操作系统
燃于AC之乐2 天前
【Linux系统编程】进程地址空间完全指南:页表、写时拷贝与虚拟内存管理
linux·操作系统·虚拟内存·进程地址空间
_OP_CHEN2 天前
【Linux系统编程】(二十三)从块到块组:Ext2 文件系统核心架构的初步认识
linux·操作系统·文件系统·c/c++·ext2文件系统·磁盘分区·块组
Byte不洛3 天前
Linux 多线程编程入门:线程栈、TLS、互斥锁与条件变量详解
linux·操作系统·多线程·pthread·线程互斥
_OP_CHEN3 天前
【Linux系统编程】(二十二)从磁盘物理结构到地址映射:Ext 系列文件系统硬件底层原理深度剖析
linux·操作系统·文件系统·c/c++·计算机硬件·ext文件系统·磁盘寻址
Trouvaille ~4 天前
【Linux】进程信号(三):信号捕捉与操作系统运行原理
linux·运维·服务器·c++·操作系统·信号·中断
2401_841495644 天前
【操作系统】进程的算法
python·算法·操作系统·进程·进程调度算法·进程同步与互斥算法·死锁处理算法