Skip to content

Topic

LRU caching

Cache eviction strategy that discards the least recently used entry, commonly implemented with a hash map for lookup plus a linked list or parallel arrays to track access order.

Current clusters