当前位置: 首页 > news >正文

《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)

http://www.dtcms.com/a/149727.html

相关文章:

  • docker容器,mysql的日志文件怎么清理
  • Spark–steaming
  • 根据极点-零点分布进行状态空间模型降阶
  • 设备制造行业如何避免项目管理混乱?
  • 30分钟编写十大排序算法完成
  • NumPy入门:从数组基础到数学运算
  • Redis ⑤-单线程模型 | 常用数据结构
  • 【SAP-CO】成本主数据
  • UWB定位技术在钢铁厂行业中的创新应用与价值实践
  • 代理设计模式:从底层原理到源代码 详解
  • 物理机检查磁盘坏道方式
  • prtobuf的原理
  • 【Luogu】动态规划一
  • TS-300B浊度传感器详解(STM32)
  • STM32单片机入门学习——第46节: [14-1] WDG看门狗
  • Redis在.NET平台中的各种应用场景
  • AI日报 - 2025年4月23日
  • 代理模式(Proxy Pattern)详解:以延迟加载图片为例
  • NLP高频面试题(五十)——大模型(LLMs)分词(Tokenizer)详解
  • 【C++】Json-Rpc框架项目介绍(1)
  • Agent框架LangGraph:实现一个简单的Plan-and-Execute Agent
  • 电子电器架构 --- 面向下一代车辆的演进式(发展演变的)汽车网关
  • 仅追加KV数据库
  • 实验一 进程控制实验
  • 2023蓝帽杯初赛内存取证-4
  • NVIDIA 自动驾驶技术见解
  • 从零到多智能体:Google Agent开发套件(ADK)入门指南
  • C语言教程(十三):C 语言中 enum(枚举)的详细介绍
  • 武装Burp Suite工具:RouteVulScan插件_被动扫描发现漏洞.
  • shared_ptr八股收集 C++