Page Cache
Everything on SkillVeris tagged Page Cache — collected across the glossary, study notes, blog, and cheat sheets.
4 resources across 1 library
Interview Questions(4)
What are Memory-Mapped Files?
A memory-mapped file is a file whose contents are mapped directly into a process’s virtual address space via the page cache, so the program reads and writes th…
What is the Buffer Cache in an Operating System?
The buffer cache is a region of kernel memory that holds recently used raw disk blocks so that repeated reads and writes to the same block hit fast RAM instead…
Page Cache vs Buffer Cache: What Is the Difference?
The page cache caches file contents in memory indexed by file and byte offset (used for regular file reads, writes, and mmap()), while the buffer cache histori…
What Does the mmap() System Call Do?
mmap() maps a file (or anonymous memory) directly into a process’s virtual address space, so the program can read and write the file’s contents using ordinary…