Cache (computing)
In computing, a cache (/kæʃ/ i KASH) is a hardware or computer 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.
— Wikipedia
References
- Different Types of Caching: Server Cache vs Browser Cache vs Page (Site) Cache
- Redis in 100 Seconds - YouTube
- What is Caching and How it Works | AWS
- Server-side caching Client-side caching - Coding Ninjas
- Documentation | Redis
- TutorialCachingStory · memcached/memcached Wiki
- Memcached Tutorial
- The Magic of LRU Cache (100 Days of Google Dev) - YouTube
- LRU, метод вытеснения из кэша / Habr