Tagged articles
2 articles
Page 1 of 1
Architecture Digest
Architecture Digest
May 12, 2016 · Backend Development

Understanding Distributed Caching with Memcached: Principles and Algorithms

This article explains the fundamentals of caching, the role of memcached in high‑concurrency environments, and details the distributed implementation methods such as remainder hashing and consistent hashing, including their advantages, drawbacks, and optimization techniques.

Memcachedcaching algorithmsconsistent hashing
0 likes · 11 min read
Understanding Distributed Caching with Memcached: Principles and Algorithms
21CTO
21CTO
Mar 1, 2016 · Backend Development

Mastering Cache Algorithms: From LRU to LFU with Java Implementations

This article explains the fundamentals of caching, why caches are needed, describes common replacement policies such as LRU, LFU, FIFO, ARC, and provides Java code examples for each algorithm, helping developers choose and implement the right cache strategy for their applications.

BackendCacheLFU
0 likes · 19 min read
Mastering Cache Algorithms: From LRU to LFU with Java Implementations