Cache memory

Enlarge text Shrink text
  • Topic
| System number 987007541784405171

Information for Authority record

Name (Hebrew)
זיכרון מטמון
Name (Latin)
Cache memory
Name (Arabic)
الذاكرة المخبئية
Other forms of name
Cache (Computers)
Cache storage
See Also From tracing topical name
Computer storage devices
MARC
MARC

Other Identifiers

Wikidata: Q165596
Library of congress: sh 88007957
Sources of Information
  • Work cat.: Agarwal, A. Analysis of cache performance for operating systems and multiprogramming, c1988.
  • Computer dict.
  • Engr. index.
  • Std. glossary of computer terminology.
  • Random House(cache storage)
1 / 1

Wikipedia description:

In computing, a cache ( KASH) is a hardware or software component that stores data so that future requests for that data can be served faster; the data stored in a cache might be the result of an earlier computation or a copy of data stored elsewhere. A cache hit occurs when the requested data can be found in a cache, while a cache miss occurs when it cannot. Cache hits are served by reading data from the cache, which is faster than recomputing a result or reading from a slower data store; thus, the more requests that can be served from the cache, the faster the system performs. To be cost-effective, caches must be relatively small. Nevertheless, caches are effective in many areas of computing because typical computer applications access data with a high degree of locality of reference. Such access patterns exhibit temporal locality, where data is requested that has been recently requested, and spatial locality, where data is requested that is stored near data that has already been requested.

Read more on Wikipedia >