Trusted answers to developer questions

What is cache?

Get Started With Machine Learning

Learn the fundamentals of Machine Learning with this free course. Future-proof your career by adding ML skills to your toolkit — or prepare to land a job in AI or Data Science.

In computing terms, a cache (pronounced cash) is hardware or software that is used to temporarily store data so that it can be accessed quickly. This data is either frequently accessed by a client or likely to be accessed in the near future.

Caches are usually very small in size so that they are cost-effective and efficient. They are frequently used by cache clients such as web-browsers, the CPU, operating systems, and DNS (to name a few). Accessing data from a cache is much faster than accessing it from the main memory or any other type of storage.

How it works

Let’s assume that a cache client wants to access some data. First, the client will check if the data is stored in the cache. If the requested data is found in the cache, it will immediately be returned to the client. This is known as a cache hit.

However, if the data is not stored in the cache, a cache miss occurs. In such insta​nces, the client then fetches the data from the main memory and stores it in the cache. The mechanism for storing ​data in the cache depends on the caching algorithm and policies used.

The following illustration demonstrates how a cache hit in a system cache works:

svg viewer

If the data at address 25 was not cached, it would need to be fetched from the main memory. The data would then be inserted into the cache. If the cache has space, the data will be inserted easily. However, if the cache is already full, then some data will be evicted. What gets evicted, and why, depends on the eviction policy used. Some commonly used cache eviction policies are:

  • Least Recently Used (LRU): The least recently accessed cache item is evicted.
  • Least Frequently Used (LFU): Keeps count of how many times each item is requested and evicts the one that is requested the least.
  • Most Recently Used (MRU): The most recently accessed item is evicted. This policy is useful if you know that the most recently used data will not be soon reaccessed.

The illustration below shows how a cache miss works:

svg viewer

Examples of cache usage

  • Web cache: A browser will cache websites that are visited frequently by the user. This way, the next time a user visits a particular website, its content will be loaded from the cache instead of being fetched from a server.
  • Memoization: This programming technique follows the same idea as a cache; function calls are cached to prevent repeated computations.
  • Disk cache: Holds recently read data from a disk so that expensive read operations to the disk are minimized.

Accessing data from an L1 CPU cache is around 100 times faster than accessing it from RAM.

RELATED TAGS

cache
memory
Copyright ©2024 Educative, Inc. All rights reserved
Did you find this helpful?