therunner97
therunner97

Reputation: 11

Is there a difference between page caches and disk caches?

I apologize if this has already been answered, I just came across some textbook references that seem to be using the terms "page cache" and "disk cache" as separate entities, but I always was under the impression that they were the same thing.

Upvotes: 1

Views: 693

Answers (2)

NIXEL
NIXEL

Reputation: 31

A page cache is used to speed up access to images and data on disk. It is used to cache the logical contents of a file a page at a time and is accessed via the file and offset within the file. As pages are read into memory from disk, they are cached in the page cache.

Upvotes: 1

Related Questions