INDEX 0~9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

CACHE

cache  is a collection of data duplicating original values stored elsewhere or computed earlier, where the original data is expensive to fetch (owing to longer access time) or to compute, compared to the cost of reading the cache. In other words, a cache operates as a temporary storage area where frequently accessed data can be stored for rapid access. Once the data is stored in the cache, it can be used in the future by accessing the cached copy rather than re-fetching or recomputing the original data.

Caches have proven extremely effective in many areas of computing because access patterns in typical computer applications have locality of reference.