预读;提前读取(多用于计算机/存储领域):系统在程序真正需要数据之前,先把后续可能用到的数据读入缓存,以减少等待磁盘/网络 I/O 的时间、提升吞吐与响应速度。(在一般语境中也可指“提前阅读”,但最常见的是技术用法。)
/ˈriːd əˌhɛd/
The system uses read-ahead to load files faster.
系统使用预读来更快地加载文件。
With read-ahead enabled, sequential scans run smoothly because data is fetched into the cache before the CPU asks for it.
启用预读后,顺序扫描会更流畅,因为数据会在 CPU 请求之前就被取入缓存。
由动词短语 read ahead(“向前读、提前读”)演变而来;在计算机领域中,这个短语被名词化并常写作连字符形式 read-ahead,用来指“提前读取/预取(prefetch)数据”的机制或策略。