Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 370 Bytes

File metadata and controls

10 lines (7 loc) · 370 Bytes

LRU Cache Simulation

This project simulates a modern web browser cache using the Least Recently Used (LRU) caching policy. It stores the last N visited web pages and evicts the least-used page when the cache is full.

Features

  • Simulates browser page access
  • Implements LRU eviction policy
  • Tracks cache hit and miss statistics
  • Configurable cache size