paginacache
paginacache, commonly referred to as the page cache in Unix-like operating systems, is the memory resident cache used to speed up file input and output by keeping recently accessed disk pages in RAM. When a program reads data from a file, the kernel first checks the page cache; if the data is present, it is returned from memory, avoiding a disk seek. If not, the kernel reads from storage and stores the page in the cache for subsequent accesses.
The page cache stores both file data and filesystem metadata, such as inodes and directory blocks. It
Administration and tuning: under memory pressure, the kernel may reclaim page cache pages. Administrators can influence
Limitations and considerations: while page cache generally improves read performance, it consumes RAM and can interact
See also: page cache, disk caching, Linux kernel, virtual memory.