Find the word definition

Wiktionary
readahead

n. (context computing English) The operation of reading data from a storage medium in advance so that it is immediately available when requested.

Wikipedia
Readahead

readahead is a system call of the Linux kernel that loads a file's contents into the page cache. This prefetches the file so that when it is subsequently accessed, its contents are read from the main memory ( RAM) rather than from a hard disk drive (HDD), resulting in much lower file access latencies.

Many Linux distributions use readahead on a list of commonly used files to speed up booting. In such a setup, if the kernel is booted with the profile boot parameter, it will record all file accesses during bootup and write a new list of files to be read during later boot sequences. This will make additional installed services start faster, because they are not included in the default readahead list.

In Linux distributions that use systemd, readahead binary (as part of the boot sequence) is replaced by systemd-readahead. However, support for readahead was removed from systemd in its version 219, being described as unmaintained and unable to provide expected performance benefits.

Certain experimental page-level prefetching systems have been developed to further improve performance.